[Emacs] Make dependency of find script functions on eshell explicit
This commit is contained in:
parent
6e562d19d5
commit
a6cfcabdc6
@ -865,13 +865,18 @@ details.
|
||||
(not (f-directory? fullpath))))
|
||||
(directory-files filepath))))
|
||||
|
||||
(defun imalison:get-executables-on-path ()
|
||||
(mapcan 'imalison:get-executables-at-path (eshell-parse-colon-path (getenv "PATH"))))
|
||||
(use-package eshell
|
||||
:commands (eshell-parse-colon-path imalison:get-executables-on-path)
|
||||
:config
|
||||
(defun imalison:get-executables-on-path ()
|
||||
(mapcan 'imalison:get-executables-at-path
|
||||
(eshell-parse-colon-path (getenv "PATH")))))
|
||||
|
||||
(defun imalison:edit-script ()
|
||||
(interactive)
|
||||
(find-file (executable-find
|
||||
(ido-completing-read "Select a script to edit: "
|
||||
(find-file
|
||||
(executable-find
|
||||
(completing-read "Select a script to edit: "
|
||||
(imalison:get-executables-on-path)))))
|
||||
#+END_SRC
|
||||
** Toggle lexical binding in the current buffer
|
||||
|
Loading…
Reference in New Issue
Block a user