Emacs ispell转到上一个单词?

因为我正在使用M-x ispell来检查LaTeX代码

我使用SPC跳过很多不应该纠正的条目.

但后来我有时会跳过一个拼写错误的单词.

什么是回到以前的单词ispell的关键是什么? 最佳答案 我检查了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返回先前的错误.或者,您可以为此功能创建自己的标记环.

点赞