mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-17 12:00:29 +01:00
* Change sumneko-lua-language-server download url to GitHub release * Add windows installer for sumneko-lua-language-server * fix filename
15 lines
401 B
Batchfile
15 lines
401 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
set VERSION=0.20.2
|
|
curl -L -o "vscode-lua.vsix" "https://github.com/sumneko/vscode-lua/releases/download/v%VERSION%/lua-%VERSION%.vsix"
|
|
|
|
call "%~dp0\run_unzip.cmd" vscode-lua.vsix
|
|
del vscode-lua.vsix
|
|
|
|
echo @echo off ^
|
|
|
|
%%~dp0\extension\server\bin\Windows\lua-language-server.exe -E -e LANG=en %%~dp0\extension\server\main.lua %%* ^
|
|
|
|
> sumneko-lua-language-server.cmd
|