branch: externals/shell-command+ commit 36ed0060289b62fd0500f39a39c992daafde576c Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Fix shell-command+-substitute-alist customization type --- shell-command+.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shell-command+.el b/shell-command+.el index 02d22fa..0d2394e 100644 --- a/shell-command+.el +++ b/shell-command+.el @@ -136,8 +136,10 @@ handlers if the symbol (e.g. `man') is contained in the list." ("cd" . shell-command+-cmd-cd)))) "Association of command substitutes in Elisp. Each entry has the form (COMMAND . FUNC), where FUNC is passed -the command string" - :type 'boolean) +the command string. To disable all command substitutions, set +this option to nil." + :type '(alist :key-type (string :tag "Command Name") + :value-type (function :tag "Substitute")))