diff options
-rw-r--r-- | emacs/.emacs.d/wpc/ivy-helpers.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/ivy-helpers.el b/emacs/.emacs.d/wpc/ivy-helpers.el index 75b22fa4bb79..b76e5fae75ca 100644 --- a/emacs/.emacs.d/wpc/ivy-helpers.el +++ b/emacs/.emacs.d/wpc/ivy-helpers.el @@ -55,7 +55,7 @@ NixOS wrappers." "Prompts the user with a list of all installed applications and lets them select one to launch." (interactive) - (let ((external-commands-list (list-external-commands))) + (let ((external-commands-list (ivy-helpers/list-external-commands))) (ivy-read "Command:" external-commands-list :require-match t :action #'ivy-helpers/do-run-external-command))) |