I broke up with neovim....vim is my best friend now
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
version="2.1.0"
|
||||
url="https://github.com/microsoft/vscode-eslint/releases/download/release%2F$version-next.1/vscode-eslint-$version.vsix"
|
||||
asset="vscode-eslint.vsix"
|
||||
curl -L "$url" -o "$asset"
|
||||
unzip "$asset"
|
||||
rm "$asset"
|
||||
|
||||
cat <<EOF >eslint-language-server
|
||||
#!/bin/sh
|
||||
|
||||
DIR=\$(cd \$(dirname \$0); pwd)
|
||||
node \$DIR/extension/server/out/eslintServer.js \$*
|
||||
EOF
|
||||
|
||||
chmod +x eslint-language-server
|
||||
Reference in New Issue
Block a user