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に固執しなければなりません。
私の質問は次のとおりです。上矢印キーをトゥアレグの前のコマンドにバインドする方法は?
矢印キーの代わりに M+p を使用してください :) しかし、次の行を .emacs ファイルに追加することもできます:
(add-hook 'tuareg-interactive-mode-hook (lambda () (local-set-key (kbd "<up>") 'comint-previous-input) ) )