summary refs log tree commit diff
diff options
context:
space:
mode:
-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)