diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | installer/install-rls.cmd | 15 | ||||
-rwxr-xr-x | installer/install-rls.sh | 11 | ||||
-rw-r--r-- | settings.json | 4 |
4 files changed, 4 insertions, 30 deletions
@@ -24,6 +24,8 @@ But when rebuild the cache, any merging plugin manager erases old cached files(i ## Usage +If you install rls already, you can use rls without configurations. But if you not installed rls yet, you can install it by following [this instruction](https://github.com/rust-lang/rls#setup). + If you install clangd already, you can use clangd for C/C++ without configurations. But if you install clang with named clangd-6.0, you can replace executable like below: ```vim @@ -59,7 +61,7 @@ Currently, no way to uninstall/update server. Run this command again, newer vers | TypeScript | typescript-language-server | Yes | | JavaScript | javascript-typescript-langserver/typescript-language-server | Yes | | Python | pyls | Yes | -| Rust | rls | Yes | +| Rust | rls | No | | Go | gopls | Yes | | Ruby | solargraph | Yes | | PHP | intelephense | Yes | diff --git a/installer/install-rls.cmd b/installer/install-rls.cmd deleted file mode 100644 index eb7900a..0000000 --- a/installer/install-rls.cmd +++ /dev/null @@ -1,15 +0,0 @@ -@echo off - -setlocal - -cd %~dp0 -if exist "..\servers\rls" rd /S /Q "..\servers\rls" -md "..\servers\rls" -cd "..\servers\rls" -set CARGO_HOME=%cd% -cargo install rls -copy bin\rls.exe . -rd /S /Q "bin" -rd /S /Q "registry" -del .package-cache -del .crates.toml diff --git a/installer/install-rls.sh b/installer/install-rls.sh deleted file mode 100755 index ab310ff..0000000 --- a/installer/install-rls.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -cd $(dirname $0) -[ -d ../servers/rls ] && rm -rf ../servers/rls -mkdir ../servers/rls -cd ../servers/rls -CARGO_HOME=$(pwd) cargo install rls -cp bin/rls . -rm -rf bin registry .package-cache .crates.toml diff --git a/settings.json b/settings.json index 992d02d..8081274 100644 --- a/settings.json +++ b/settings.json @@ -50,9 +50,7 @@ "rust": [ { "command": "rls", - "requires": [ - "rustup" - ] + "requires": [] } ], "go": [ |