summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-08-22 16:04:19 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-08-22 16:04:19 -0700
commita774a84185d5762e86381aedc6dfb59956ee4d43 (patch)
tree8de6d955737c0ad60cf0177b0ea0f0be0ceac318 /emacs.d
parent[emacs] Add a function to open a doc. page (diff)
downloademacs.d-a774a84185d5762e86381aedc6dfb59956ee4d43.tar.gz
[emacs] Fix indentation for a function.
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/lib/my-functions.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/emacs.d/lib/my-functions.el b/emacs.d/lib/my-functions.el
index 0bdc6d7..962a362 100644
--- a/emacs.d/lib/my-functions.el
+++ b/emacs.d/lib/my-functions.el
@@ -36,13 +36,13 @@
 ;; find a wiki page
 (defun fc/find-wiki-page ()
   "Finds wiki page."
-    (interactive)
-    (let ((collection
-           (delete-dups
-            (append (directory-files fc/wiki-dir-location)))))
-      (ivy-read "wiki pages:" collection
-                :action (lambda (x) (find-file (concat fc/wiki-dir-location x)))
-                :caller 'fc/find-wiki-page)))
+  (interactive)
+  (let ((collection
+         (delete-dups
+          (append (directory-files fc/wiki-dir-location)))))
+    (ivy-read "wiki pages:" collection
+              :action (lambda (x) (find-file (concat fc/wiki-dir-location x)))
+              :caller 'fc/find-wiki-page)))
 
 (global-set-key (kbd "C-c w") 'fc/find-wiki-page)