diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-08-22 16:04:19 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-08-22 16:04:19 -0700 |
commit | a774a84185d5762e86381aedc6dfb59956ee4d43 (patch) | |
tree | 8de6d955737c0ad60cf0177b0ea0f0be0ceac318 | |
parent | [emacs] Add a function to open a doc. page (diff) | |
download | emacs.d-a774a84185d5762e86381aedc6dfb59956ee4d43.tar.gz |
[emacs] Fix indentation for a function.
-rw-r--r-- | emacs.d/lib/my-functions.el | 14 |
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) |