26 releases (7 breaking)

0.8.3 Mar 25, 2024
0.7.6 Mar 8, 2024

#123 in Text editors

Download history 6/week @ 2024-01-20 24/week @ 2024-01-27 10/week @ 2024-02-03 394/week @ 2024-02-17 453/week @ 2024-02-24 438/week @ 2024-03-02 482/week @ 2024-03-09 46/week @ 2024-03-16 116/week @ 2024-03-23 73/week @ 2024-03-30 8/week @ 2024-04-06

397 downloads per month

Apache-2.0

270KB
4K SLoC

harper-ls

harper-ls is the Language Server Protocol frontend for Harper. Out of the box, it has built-in support for parsing the comments of most programming languages, as well as any and all markdown files.

Installation

How you choose to install harper-ls depends on your use-case. Right now, we only directly support usage through nvim-lspconfig. Refer to the linked documentation for more information.

If you happen to use mason.nvim, installation will be pretty straightforward. harper-ls is in the official Mason registry, so you can install it the same way you install anything through Mason.

If you don't install your LSPs through Mason, we also have binary releases available on GitHub.

Finally, if you have Rust installed, you're in luck! To install harper-ls, simply run:

cargo install harper-ls --locked

Dictionaries

harper-ls has three kinds of dictionaries: user, file-local, and static dictionaries.

User Dictionary

Each user of harper-ls has their own dictionary, located in the following directories on each operating system:

Operating System Location
Linux $XDG_CONFIG_HOME/harper-ls/
MacOS $HOME/Library/Application Support/harper-ls/
Windows {FOLDERID_LocalAppData}/harper-ls/

This dictionary is a simple word list in plain-text. You can add and remove words at will. You can add to the user dictionary with code actions on misspelled words.

Configuration

You don't have to stick with the default locations (listed above). If you use Neovim, you can set the location of the dictionary with the userDictPath key:

lspconfig.harper_ls.setup {
  settings = {
    ["harper-ls"] = {
      userDictPath = "~/dict.txt"
    }
  },
}

You can also toggle any particular linter. The default values are shown below:

lspconfig.harper_ls.setup {
  settings = {
    ["harper-ls"] = {
      linters = {
        spell_check = true,
        spelled_numbers = false,
        an_a = true,
        sentence_capitalization = true,
        unclosed_quotes = true,
        wrong_quotes = false,
        long_sentences = true,
        repeated_words = true,
        spaces = true,
        matcher = true
      }
    }
  },
}

By default, harper-ls will mark all diagnostics with HINT. If you want to configure this, refer below:

lspconfig.harper_ls.setup {
  settings = {
    ["harper-ls"] = {
        diagnosticSeverity = "hint" -- Can also be "information", "warning", or "error"
    }
  },
}

File-Local Dictionary

Sometimes, you'll encounter a word (or name) that is only valid within the context of a specific file. In this case, you can use the code action that adds the word to the file-local dictionary. Any words added to this dictionary will, like the name implies, only be included in the dictionary when performing corrections on the file at that specific path.

You can find the file-local dictionaries in the following directories on each operation system:

Operating System Location
Linux $XDG_DATA_HOME/harper-ls/file_dictionaries or $HOME/.local/share/harper-ls/file_dictionaries
MacOS $HOME/Library/Application Support/harper-ls/file_dictionaries
Windows {FOLDERID_LocalAppData}/harper-ls/file_dictionaries

The format of these files is identical to user dictionaries.

Static Dictionary

The static dictionary is built into the binary and is (as of now) immutable. It contains almost all words you could possibly encounter.

I do take pull requests or issues for adding words to the static dictionary. It is composed of two files: harper-core/dictionary.dict and harper-core/dictionary.dict

Dependencies

~151MB
~4M SLoC