From fb98cbd2693d3cca7d8358baf9242ce3060f1a93 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Wed, 20 Mar 2024 00:13:01 -0700 Subject: [PATCH] :memo: Made further notes on installing vscode ext --- updates.txt | 4 ++++ vs_code_ext.txt | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/updates.txt b/updates.txt index 5e500a0a..af2ea3cc 100755 --- a/updates.txt +++ b/updates.txt @@ -477,3 +477,7 @@ Install yad doas pacman -S yad Install obs-studio (video recording and streaming software) doas pacman -S obs-studio + +03/20/2024 +Install vsce (vscode compiler for extensions not found in MS store, i.e. cloned from github) +doas npm install -g vsce diff --git a/vs_code_ext.txt b/vs_code_ext.txt index 09da343e..30aaaa1b 100644 --- a/vs_code_ext.txt +++ b/vs_code_ext.txt @@ -13,3 +13,25 @@ Markdown Preview Enhanced Prettier Vetur Vim + +## How to Compile via vsce + +clone the repo with the source code you want to use + +```bash +git clone https://github.com/extension_name +``` + +Once in there, run npm install to make sure you have all dependencies: + +```bash +npm install +``` + +Finally Use vsce to compile the .vsix file you'll need: + +```bash +vsce package +``` + +And lastly use VSCode by hand to install from .vsix (found under the ... menu in the extensions submenu of vscode)