From 7ecad02174e95fd36019c57c3d3897d33d814bd1 Mon Sep 17 00:00:00 2001 From: Novus Nota <68142933+novusnota@users.noreply.github.com> Date: Sun, 23 Feb 2025 18:11:16 +0100 Subject: [PATCH 1/2] chore(documentation): override completions in Sublime Text And also enhance VSIX-related descriptions a little. Fix #352 --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0701eae..4d542d1 100644 --- a/README.md +++ b/README.md @@ -71,12 +71,22 @@ yarn install yarn build ``` -For VS Code extension, additionally run: +To obtain the `.vsix` package with the VS Code extension, additionally run: ```shell yarn package ``` +And then run either of those to install the extension from the `.vsix` package: + +```shell +# VSCode +code --install-extension vscode-tact-*.vsix + +# VSCodium +codium --install-extension vscode-tact-*.vsix +``` + ## Editor Setup ### Sublime Text @@ -99,7 +109,8 @@ yarn package "command": ["node", "path/to/language-server/dist/server.js", "--stdio"], "selector": "source.tact" } - } + }, + "inhibit_snippet_completions": true } ``` From 48d98bbecac66fc55225fa3cd50e6b84897999bf Mon Sep 17 00:00:00 2001 From: Novus Nota <68142933+novusnota@users.noreply.github.com> Date: Sun, 23 Feb 2025 18:27:52 +0100 Subject: [PATCH 2/2] version fix --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4d542d1..28eacde 100644 --- a/README.md +++ b/README.md @@ -80,11 +80,11 @@ yarn package And then run either of those to install the extension from the `.vsix` package: ```shell -# VSCode -code --install-extension vscode-tact-*.vsix +# VSCode, replace VERSION with actual version from package.json +code --install-extension vscode-tact-VERSION.vsix -# VSCodium -codium --install-extension vscode-tact-*.vsix +# VSCodium, replace VERSION with actual version from package.json +codium --install-extension vscode-tact-VERSION.vsix ``` ## Editor Setup