Spacemacs 中开启拼写检查
使用Spacemacs开发已经有一段时间了,目前用的还是比较爽的,特别是我最喜欢的LSP功能。不过最近小伙伴反应我写的代码中的变量命名拼写有问题。我顿时羞红了老脸,之前使用VS Code的时候有拼写检查非常方便,于是想要在Spacemaces中也开启拼写检查。
打开拼写检查layer
要使用Spacemacs 的拼写检查功能,非常简单,只要在Layer中把拼写检查打开即可。如下:
spell-checking
使用方法
贴个快捷键吧
SPC S b
flyspell whole buffer
SPC S c
flyspell correct
SPC u SPC S c
flyspell correct all errors one by one
SPC S d
change dictionary
SPC S n
flyspell goto next error
SPC t S
toggle flyspell
可能遇到的问题
Mac系统需要安装 ispell
或者 aspell
,如果2个同时安装,aspell
要高于 ispell
的优先级。
后话
我觉得还是VSCode的拼写更厉害一点。后面还要研究一下,未完待续。