当我M-x ispell用来检查 LaTeX 代码时,我SPC会跳过很多不应该更正的条目。但有时我会跳过一个实际拼写错误的单词。用 ispell 返回上一个单词的关键是什么?
问问题
515 次
1 回答
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))
然后,您可以随时使用 Cu C-SPC 回到以前的错误。或者,您可以为此功能创建自己的标记环。
于 2014-01-30T11:35:40.007 回答