From 183b3061592ef277fe3ed930257b233f37eea758 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 16 Jun 2020 11:49:56 +0100 Subject: [PATCH] Use ivy-helpers/list-external-commands Without the ivy-helpers/ namespace, I believe this code is buggy. --- emacs/.emacs.d/wpc/ivy-helpers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/.emacs.d/wpc/ivy-helpers.el b/emacs/.emacs.d/wpc/ivy-helpers.el index 75b22fa4b..b76e5fae7 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)))