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.
我目前正在尝试使用 Erlang。另外,在 (zsh) shell 中,我已经习惯了使用 vi 模式进行行编辑(set -o vi)。
set -o vi
那么:有没有办法让 Erlang 解释器使用更像 vi 的键绑定?
是的!只需将其称为
rlwrap erl -oldshell
注意:您可能需要安装 rlwrap(readline 包装器)并调整您的 .inputrc ( set editing-mode vi)
set editing-mode vi
不!
好吧,您可以编写自己的行编辑模块并使用它。