about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/ivy-helpers.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/wpc/ivy-helpers.el')
-rw-r--r--emacs/.emacs.d/wpc/ivy-helpers.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/emacs/.emacs.d/wpc/ivy-helpers.el b/emacs/.emacs.d/wpc/ivy-helpers.el
index 068598082975..8b53c62fd643 100644
--- a/emacs/.emacs.d/wpc/ivy-helpers.el
+++ b/emacs/.emacs.d/wpc/ivy-helpers.el
@@ -40,8 +40,7 @@ with the key and value from KV."
        (message "%s process finished." process)))))
 
 (defun ivy-helpers-list-external-commands ()
-  "Creates a list of all external commands available on $PATH while filtering
-NixOS wrappers."
+  "Create a list of all external commands available on $PATH."
   (cl-loop
    for dir in (split-string (getenv "PATH") path-separator)
    when (and (file-exists-p dir) (file-accessible-directory-p dir))
@@ -56,8 +55,7 @@ NixOS wrappers."
    finally return (sort completions 'string-lessp)))
 
 (defun ivy-helpers-run-external-command ()
-  "Prompts the user with a list of all installed applications and
-lets them select one to launch."
+  "Prompts the user with a list of all installed applications to launch."
   (interactive)
   (let ((external-commands-list (ivy-helpers-list-external-commands)))
     (ivy-read "Command:" external-commands-list