Emacs ispell转到上一个单词?

时间:2013-07-07 07:53:57

标签: emacs ispell

因为我正在使用 M-x ispell 来检查LaTeX代码 我使用 SPC 来跳过很多不应该纠正的条目。 但后来我有时会跳过一个拼写错误的单词。 ispell回到上一个词的关键是什么?

1 个答案:

答案 0 :(得分:2)

我检查了ispell.el的源代码,不幸的是,似乎没有密钥绑定(密钥实际上是在函数ispell-command-loop中硬编码的)。作为一个快速黑客,如果你不介意你的缓冲区本地标记环混乱,你可以做这样的事情:

(defadvice ispell-command-loop (after leave-breadcrumbs activate)
  "Leave a trail in the mark-ring when waiting for user input"
  (push-mark (point) t))

然后您可以随时使用C-u C-SPC返回先前的错误。或者,您可以为此功能创建自己的标记环。