emenu

Emacs version of dmenu
Log | Files | Refs | LICENSE

commit a714b699bb38cb4a6c18b4327571a397889a8891
parent c05c417c6a0954a8f5bfb5e0b1358c601b0e4d04
Author: Erik Oosting <crazazy@tilde.cafe>
Date:   Thu,  3 Mar 2022 11:52:51 +0100

autoload emenu

Diffstat:
Memenu.el | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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)