diff options
| author | Github Actions <actions@github> | 2021-01-20 17:51:18 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-01-20 17:51:18 +0000 |
| commit | 8b28c06d2490e1b582c0abc3a7f421c341f6ae7b (patch) | |
| tree | 2ce1a1092280ca10bfa84a9b3a5fdb80cbe0e7d3 | |
| parent | Merge pull request #679 from ckipp01/racket (diff) | |
| download | nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar.gz nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar.bz2 nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar.lz nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar.xz nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.tar.zst nvim-lspconfig-8b28c06d2490e1b582c0abc3a7f421c341f6ae7b.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | CONFIG.md | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -47,6 +47,7 @@ that config. - [pyls_ms](#pyls_ms) - [pyright](#pyright) - [r_language_server](#r_language_server) +- [racket_langserver](#racket_langserver) - [rls](#rls) - [rnix](#rnix) - [rome](#rome) @@ -2118,6 +2119,12 @@ This server accepts configuration via the `settings` key. Display plots within VS Code\. Might require a restart of the Julia process\. +- **`julia.useProgressFrontend`**: `boolean` + + Default: `true` + + null + - **`julia.useRevise`**: `boolean` Default: `true` @@ -2329,6 +2336,12 @@ This server accepts configuration via the `settings` key. null +- **`lean.input.eagerReplacementEnabled`**: `boolean` + + Default: `true` + + null + - **`lean.input.enabled`**: `boolean` Default: `true` @@ -3373,6 +3386,28 @@ require'lspconfig'.r_language_server.setup{} root_dir = root_pattern(".git") or os_homedir ``` +## racket_langserver + +[https://github.com/jeapostrophe/racket-langserver](https://github.com/jeapostrophe/racket-langserver) + +The Racket language server. This project seeks to use +[DrRacket](https://github.com/racket/drracket)'s public API to provide +functionality that mimics DrRacket's code tools as closely as possible. + +Install via `raco`: `raco pkg install racket-langserver` + + +```lua +require'lspconfig'.racket_langserver.setup{} + + Commands: + + Default Values: + cmd = { "racket", "--lib", "racket-langserver" } + filetypes = { "racket", "scheme" } + root_dir = <function 1> +``` + ## rls https://github.com/rust-lang/rls |
