mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
Update the command to follow latest. Please see: https://github.com/dart-lang/sdk/blob/main/pkg/analysis_server/tool/lsp_spec/README.md
12 lines
359 B
Batchfile
12 lines
359 B
Batchfile
@echo off
|
|
|
|
curl -o dartsdk-windows-x64-release.zip "https://storage.googleapis.com/dart-archive/channels/dev/release/latest/sdk/dartsdk-windows-x64-release.zip"
|
|
call "%~dp0\run_unzip.cmd" dartsdk-windows-x64-release.zip
|
|
del dartsdk-windows-x64-release.zip
|
|
|
|
echo @echo off ^
|
|
|
|
%%~dp0\dart-sdk\bin\dart language-server %%* ^
|
|
|
|
> analysis-server-dart-snapshot.cmd
|