在emacs中更改R会话中的主键行为

时间:2011-09-12 19:05:30

标签: r emacs dot-emacs

我想在emacs的R会话中更改主页键的行为。当我按下主页键时,它会一直带到>提示符。我想要主页键将我带到命令条目的开头(即从行的开头起两点)。我假设我可以通过.emacs文件进行调整;我将需要对我需要添加到该文件的命令的任何指导。谢谢!

1 个答案:

答案 0 :(得分:1)

您想要的行为已作为C-a提供。您可以使用以下行重新绑定主页键:

(local-set-key (kbd "<home>") 'comint-bol)

使用R会话时,有很多方法可以自动执行此操作。我使用如下内容:

;; Define the keybinding you want
(defun my-inferior-ess-mode-hook ()
  (local-set-key (kbd "<home>") 'comint-bol))

;; add the key-binding to the hook that gets called whenever you start an R session:
(add-hook 'inferior-ess-mode-hook 'my-inferior-ess-mode-hook)

单个键绑定有点多,但您可以扩展my-inferior-ess-mode-hook的定义以包含您想要使用的许多自定义。