diff options
author | Crazazy | 2023-12-01 18:11:38 +0100 |
---|---|---|
committer | Crazazy | 2023-12-01 18:11:38 +0100 |
commit | f48fbcbbdaa694bdba1857483c293494b65ff879 (patch) | |
tree | b968af8d812402e417c9cd240009439cb1fe2ca1 | |
parent | 21c76edb5e1d44f8a866cc1a960ee405353d0aa1 (diff) |
autoload emenu
-rw-r--r-- | emenu.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emenu.el b/emenu.el index e0f8629..9d464e4 100644 --- a/emenu.el +++ b/emenu.el @@ -21,6 +21,7 @@ (require 'cl-seq) (require 'ido) +;;;###autoload (defun emenu--all-commands () "returns a list of all the programs accessible to you in $PATH" ;; This ls-output part was mostly created by phundrak because he found my shell-piping implementation @@ -37,6 +38,7 @@ (alias-output (split-string (shell-command-to-string "alias -p | sed -E 's/^alias ([^=]*)=.*$/\\1/'") "\n"))) (append ls-output alias-output))) +;;;###autoload (defun emenu (&optional command-list) "A dmenu-inspired application launcher using a separate emacs frame" (interactive) |