我正在尝试开始在 emacs 中使用 eshell 代替 bash,但我严重依赖多年来编写的 bash 函数。我想将 eshell 配置为在“找不到命令”条件发生时调用 bash,以防有问题的命令被实现为 bash 函数。
有一个变量名字很诱人eshell-alternate-command-hook
,听起来像是定制的,但我认为我缺乏 elisp 技能正在干扰我的成功。
这是我最大的努力:
(add-hook 'eshell-alternate-command-hook 'invoke-bash t t)
(defun invoke-bash (command args)
(throw 'eshell-replace-command
(list "bash -c" command args)))
但是当我测试它时,它不起作用:
c:/temp $ lsd
Wrong number of arguments: (lambda (command args) (throw (quote eshell-replace-command) (list "bash -c" command args))), 1
c:/temp $