Emacs ispell转到上一个单词?

Emacs ispell转到上一个单词?,emacs,ispell,Emacs,Ispell,当我使用m-x ispell检查LaTeX代码时 我使用SPC跳过许多不应该更正的条目。 但有时我会跳过一个拼写错误的单词。 使用ispell返回上一个单词的键是什么?我检查了ispell.el的源代码,不幸的是,似乎没有键绑定(键实际上是在函数ispell命令循环中硬编码的)。作为一种快速攻击,如果您不介意缓冲区本地标记环被弄乱,您可以这样做: (defadvice ispell-command-loop (after leave-breadcrumbs activate) "Leave

当我使用m-x ispell检查LaTeX代码时 我使用SPC跳过许多不应该更正的条目。 但有时我会跳过一个拼写错误的单词。
使用ispell返回上一个单词的键是什么?

我检查了ispell.el的源代码,不幸的是,似乎没有键绑定(键实际上是在函数
ispell命令循环中硬编码的
)。作为一种快速攻击,如果您不介意缓冲区本地标记环被弄乱,您可以这样做:

(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返回到以前的错误。或者,您可以为此功能创建自己的标记环