checkers/spell: add add/remove word & next/prev error commands

So both spell-fu and flyspell users have a more consistent interface.
This commit is contained in:
Henrik Lissner 2020-09-02 13:58:27 -04:00
parent 5de263f6a4
commit 91c1e705e6
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 66 additions and 9 deletions

View file

@ -247,8 +247,7 @@ If rtags or rdm aren't available, fail silently instead of throwing a breaking e
`((:ccls . ((:clang . ,(list :extraArgs ["-isystem/Library/Developer/CommandLineTools/usr/include/c++/v1"
"-isystem/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include"
"-isystem/usr/local/include"]
:resourceDir (string-trim (shell-command-to-string "clang -print-resource-dir"))))))))))))
:resourceDir (cdr (doom-call-process "clang" "-print-resource-dir"))))))))))))
(use-package! ccls
@ -266,4 +265,4 @@ If rtags or rdm aren't available, fail silently instead of throwing a breaking e
`(:clang ,(list :extraArgs ["-isystem/Library/Developer/CommandLineTools/usr/include/c++/v1"
"-isystem/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include"
"-isystem/usr/local/include"]
:resourceDir (string-trim (shell-command-to-string "clang -print-resource-dir")))))))
:resourceDir (cdr (doom-call-process "clang" "-print-resource-dir")))))))