mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
16 lines
293 B
Batchfile
16 lines
293 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
set VERSION=v0.18.1
|
|
set ZIP=elixir-ls-%VERSION%.zip
|
|
curl -L -o "%ZIP%" "https://github.com/elixir-lsp/elixir-ls/releases/download/%VERSION%/%ZIP%"
|
|
call "%~dp0\run_unzip.cmd" "%ZIP%"
|
|
del "%ZIP%"
|
|
|
|
echo @echo off ^
|
|
|
|
call language_server.bat ^
|
|
|
|
> elixir-ls.cmd
|
|
|