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.
我是ocaml的新手。由于我使用的是学校计算机,因此无法安装 rlwrap。所以我必须坚持使用emacs tuareg。
我的问题是:如何将向上箭头键绑定到 tuareg 中的上一个命令?
只需使用 M+p 而不是箭头键 :) 但是您也可以将以下行添加到您的 .emacs 文件中:
(add-hook 'tuareg-interactive-mode-hook (lambda () (local-set-key (kbd "<up>") 'comint-previous-input) ) )