I broke up with neovim....vim is my best friend now
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
version="0.9.1"
|
||||
url="https://github.com/eclipse/che-che4z-lsp-for-cobol/releases/download/$version/cobol-language-support-$version.vsix"
|
||||
filename="cobol-language-support-$version.vsix"
|
||||
curl -L "$url" -o "$filename"
|
||||
unzip "$filename"
|
||||
rm "$filename"
|
||||
|
||||
cat <<EOF >./cobol-language-support
|
||||
#!/bin/sh
|
||||
DIR=\$(cd \$(dirname \$0); pwd)
|
||||
java "-Dline.speparator=\r\n" -jar "\$DIR/extension/server/lsp-service-cobol-$version.jar" pipeEnabled
|
||||
EOF
|
||||
|
||||
chmod +x ./cobol-language-support
|
||||
Reference in New Issue
Block a user