lang/emacs-lisp: better imenu support; better doom fn/macro highlights; remove +emacs-lisp:byte-compile

This commit is contained in:
Henrik Lissner 2017-02-09 04:23:25 -05:00
parent 6c06aa0ce7
commit 774f55e867
2 changed files with 22 additions and 20 deletions

View file

@ -2,12 +2,6 @@
;; ---- emacs-lisp ---------------------------------------------------
;;;###autoload (autoload '+emacs-lisp:byte-compile "lang/emacs-lisp/autoload" nil t)
(evil-define-command +emacs-lisp:byte-compile (&optional bang)
"Byte compile the current file, or if BANG, the entire emacs configuration."
(interactive "<!>")
(if bang (doom-byte-compile) (byte-compile-file buffer-file-name)))
;;;###autoload
(defun +emacs-lisp/find-function ()
"Jump to the definition of the function at point."