2

如何在不使用鼠标的情况下在 flyspell 中将单词添加到字典中?我知道,我可以使用常规 ispell.el 绑定 M-$ 并为此浏览菜单,但是,这需要多次击键。

是否可以将 flyspell 弹出窗口中的“保存单词”功能绑定到单个键?

4

1 回答 1

2

当您选择选项时 - 按下i它应该将其添加到您的本地字典中(好吧,无论如何都适合我:))。

对 ispell.el 进行彻底检查表明没有特殊功能可以执行此操作,但您可以拥有一个:

(defun save-ispell-word (word)
  (interactive "sA word you want to add to dictionary ")
  (ispell-send-string (concat "*" word "\n"))
  (setq ispell-pdict-modified-p '(t)))

但它只能在 ispell 次要模式下工作。

于 2012-06-17T22:07:08.160 回答