0

在 emacs 中使用 flyspell-prog-mode 会导致 go-automplete 阻塞。无论如何我可以让这两种模式很好地一起玩吗?

我已经使用另一个拼写检查器进行了研究,但没有找到与 flyspell 具有相同功能的拼写检查器(即只检查注释和字符串,并即时执行)。任何提示最感谢,谢谢

4

2 回答 2

0

这是一个普遍的问题auto-complete。做就是了

(ac-flyspell-workaround)

设置后auto-complete

于 2016-02-17T16:26:39.947 回答
0

jpkotta 是正确的。完整的参考解决方案是:

(with-eval-after-load 'go-mode 
 (require 'go-autocomplete) 
 (ac-flyspell-workaround))
于 2016-02-18T09:58:30.487 回答