From 0c634b875d1bec92e707e9db594ffddda055377a Mon Sep 17 00:00:00 2001 From: Raffael Stein Date: Wed, 29 Mar 2023 19:48:46 +0200 Subject: [PATCH] Update clojure-lsp docs - The newer clojure-lsp builds are done with GraalVM and must not be called with 'java -jar' anymore. - The clojure-lsp.io website serves the up-to-date installation instructions and settings. --- docs/src/language_servers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/language_servers.md b/docs/src/language_servers.md index 0e590ac80..dc6f8dc9c 100644 --- a/docs/src/language_servers.md +++ b/docs/src/language_servers.md @@ -36,7 +36,7 @@ Follow installation instructions on [LSP-OmniSharp](https://github.com/sublimels ## Clojure -1. Download [clojure-lsp](https://github.com/snoe/clojure-lsp#installation). +1. Download [clojure-lsp](https://clojure-lsp.io/installation/). 2. Open `Preferences > Package Settings > LSP > Settings` and add the `"clojure-lsp"` client configuration to the `"clients"`: ```json @@ -44,7 +44,7 @@ Follow installation instructions on [LSP-OmniSharp](https://github.com/sublimels "clients": { "clojure-lsp": { "enabled": true, - "command": ["java", "-jar", "/PATH/TO/clojure-lsp"], // Update the PATH + "command": ["/PATH/TO/clojure-lsp"], // Update the PATH "selector": "source.clojure", "initializationOptions": {} } @@ -52,7 +52,7 @@ Follow installation instructions on [LSP-OmniSharp](https://github.com/sublimels } ``` -!!! info "See available [initializationOptions](https://github.com/snoe/clojure-lsp#initializationoptions)." +!!! info "See available [initializationOptions](https://clojure-lsp.io/settings/#initializationoptions)." ## CSS