Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Emacs 中,如何使用 Mx 调用别名?例如,我有别名来打开文件,如'alias ff find-file $1'。我喜欢将其调用为 Mx ff RETURN $1。同样,我为查看目录定义了别名,我喜欢用 Mx 调用它而不提供参数。
为此,您应该将别名定义为全局 Emacs 别名,而不是特定于 Eshell 的别名:
(defalias 'ff 'find-file)