diff --git a/editor-support/README.md b/editor-support/README.md deleted file mode 100644 index 1e6ea6e614..0000000000 --- a/editor-support/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Language Server - -This fork provides a simple Roc language server for interactive development. - -The language server is naive and incomplete, with rudimentary support for - -- Inline diagnostics -- Hover support for get types of values - -## Building - -Build a local binary via - -```bash -cargo build -p roc_lang_srv --release -``` - -which will give you a language server binary at - -```bash -target/release/roc_ls -``` - -You can then configure your editor's LSP implementation to please point at the -build `roc_ls`. For example, in my [coc.nvim](https://github.com/neoclide/coc.nvim) -configuration, I have - -```json -{ - "languageserver": { - "roc": { - "command": "/target/release/roc_ls", - "filetypes": ["roc"] - } - } -} -```