Fix test
Update readme
Don't duplicate lowercase suggestion.
spelgud
is a spell-checking Language Server.
spelgud
exposes spelling errors as diagnostics, and provides actions to correct spelling or add words to a dictionary.
It is intended primarily as a spell-checker for helix, but should work in other editors.
Spoor
Install one of the following spell checkers:
spelgud
will look for one of the above on $PATH
and use the first it finds.
cargo install --git https://git.sr.ht/~rrc/spelgud
Ensure the cargo binary path (usually ~/.cargo/bin
) is on $PATH
.
Set the environment variable RUST_LOG
to one of ERROR, WARN, INFO, DEBUG, or TRACE.
See env_logger for more details.
# ~/.config/helix/languages.toml
[language-server.spelgud]
command = "spelgud"
# Spell-check plain-text files
[[language]]
name = "text"
scope = "text.text"
file-types = ["txt"]
language-servers = ["spelgud"]
# Spell-check markdown files, while also using `marksman` for other features
[[language]]
name = "markdown"
language-servers = ["marksman", "spelgud"]