diff options
author | William Carroll <wpcarro@gmail.com> | 2020-06-16T10·49+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-06-16T10·49+0100 |
commit | 183b3061592ef277fe3ed930257b233f37eea758 (patch) | |
tree | 0d4848938dc80dfbd486ebf826e57d2ed38f0f2e /emacs/.emacs.d/wpc/ivy-helpers.el | |
parent | f4fa363c19235d8d8f41eac421aeb2d07da3ed9c (diff) |
Use ivy-helpers/list-external-commands
Without the ivy-helpers/ namespace, I believe this code is buggy.
Diffstat (limited to 'emacs/.emacs.d/wpc/ivy-helpers.el')
-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))) |