From 035c1aae1c57393bc4445ca0570d6e4cef78fcc9 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Tue, 5 Dec 2023 13:35:10 +0900 Subject: [PATCH] chore: create helper tasks to install the LSP server and VSCode extension --- Justfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Justfile b/Justfile index 2434411..161f912 100644 --- a/Justfile +++ b/Justfile @@ -38,3 +38,14 @@ linkcheck: 'book/src/**/*.md' \ 'book/book/**/*.html' \ 'crates/**/*.rs' + +# Install the LSP server into the local system +install-lsp: + cargo install --path crates/stef-lsp --offline --debug + +# Install the VSCode extension into VSCodium +install-vscodium: install-lsp + bun install + cd vscode-extension && \ + bun run package && \ + codium --install-extension stef-*.vsix