如何在不使用鼠标的情况下在flyspell中为字典添加单词?我知道,我可以使用常规的ispell.el绑定M- $并查看菜单,但是,这需要多次击键。
是否可以将“保存Word”功能从flyspell弹出窗口绑定到单个键?
答案 0 :(得分:2)
当你选择选项时 - 按 i 将 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次要模式下工作。