General refactor, cleanup & commenting

This commit is contained in:
Henrik Lissner 2017-05-10 05:28:50 +02:00
parent 8707a80c2b
commit e265431507
12 changed files with 251 additions and 241 deletions

View file

@ -17,7 +17,7 @@
(message "Column %d" (current-column)))
;;;###autoload
(defun doom/what-bindings (key)
(defun doom-what-bindings (key)
(list
(minor-mode-key-binding key)
(local-key-binding key)

View file

@ -515,6 +515,7 @@ your emacs configuration (init.el and core/**/*.el)."
(defun doom/clean-cache ()
"Clear local cache (`doom-cache-dir'). You may need to restart Emacs for some
components to feel its effects."
(interactive)
(delete-directory doom-cache-dir t)
(make-directory doom-cache-dir t))