diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-17 00:02:00 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-17 00:02:00 +0900 |
commit | e5609d52d8cf310bce00e30fb0f9c8fd55685736 (patch) | |
tree | 81207db53aea7d54e0da487442f5ba9915914b88 /installer | |
parent | 933ed95d2d0d112907ab331b200b2dbb2de11f49 (diff) | |
download | vim-lsp-settings-e5609d52d8cf310bce00e30fb0f9c8fd55685736.tar.gz vim-lsp-settings-e5609d52d8cf310bce00e30fb0f9c8fd55685736.tar.bz2 vim-lsp-settings-e5609d52d8cf310bce00e30fb0f9c8fd55685736.zip |
Add installer
Diffstat (limited to 'installer')
-rw-r--r-- | installer/install-javascript-typescript-langserver.cmd | 16 | ||||
-rw-r--r-- | installer/install-javascript-typescript-langserver.sh | 20 |
2 files changed, 36 insertions, 0 deletions
diff --git a/installer/install-javascript-typescript-langserver.cmd b/installer/install-javascript-typescript-langserver.cmd new file mode 100644 index 0000000..19c5f91 --- /dev/null +++ b/installer/install-javascript-typescript-langserver.cmd @@ -0,0 +1,16 @@ +@echo off + +cd %~dp0 +if exist "..\servers\javascript-typescript-langserver" rd /S /Q "..\servers\javascript-typescript-langserver" +md "..\servers\javascript-typescript-langserver" +cd "..\servers\javascript-typescript-langserver" +git clone https://github.com/sourcegraph/javascript-typescript-langserver . +npm install +npm build + +echo @echo off ^ + +node %%~dp0\lib\language-server-stdio.js ^ + +> javascript-typescript-langserver.cmd + diff --git a/installer/install-javascript-typescript-langserver.sh b/installer/install-javascript-typescript-langserver.sh new file mode 100644 index 0000000..572a8df --- /dev/null +++ b/installer/install-javascript-typescript-langserver.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +cd $(dirname $0) +[ -d ../servers/javascript-typescript-langserver ] && rm -rf ../servers/javascript-typescript-langserver +mkdir ../servers/javascript-typescript-langserver +cd ../servers/javascript-typescript-langserver +git clone https://github.com/sourcegraph/javascript-typescript-langserver . +npm install +npm build + +cat <<EOF > javascript-typescript-langserver +#!/bin/sh + +DIR=\$(cd \$(dirname \$0); pwd) +node \$DIR/lib/language-server-stdio.js +EOF + +chmod +x javascript-typescript-langserver |