mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
14 lines
299 B
Batchfile
14 lines
299 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
curl -L -o server.zip "https://github.com/fwcd/kotlin-language-server/releases/latest/download/server.zip"
|
|
call "%~dp0\run_unzip.cmd" server.zip
|
|
del server.zip
|
|
|
|
echo @echo off ^
|
|
|
|
call %%~dp0\server\bin\kotlin-language-server.bat %%* ^
|
|
|
|
> kotlin-language-server.cmd
|
|
|