"Editable install" during extension development? #17931
-
Hi there! I'm completely new to VS Code extension development, so apologies in advance if this isn't the appropriate place for this question. While working on #17898, I wanted to install the extension in a way that's similar to the "editable installs" provided via pip and setuptools. I.E., I'd like VS Code to always use the latest changes in my local clone, regardless of the folder/workspace that I have open. The only relevant documentation I found was: https://github.com/microsoft/vscode-python/wiki/Coding#building That eventually led me to vscode-python/.github/actions/build-vsix/action.yml Lines 77 to 79 in 9a1f6ee Line 1880 in 9a1f6ee after which I manually installed the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
What you want to do is press F5 to launch a new Extension Development Host window which will have the code directly loaded into the editor. VS Code is smart enough to realize you're developing an extension and takes care of loading from your workspace for you. https://code.visualstudio.com/api/get-started/your-first-extension |
Beta Was this translation helpful? Give feedback.
What you want to do is press F5 to launch a new Extension Development Host window which will have the code directly loaded into the editor. VS Code is smart enough to realize you're developing an extension and takes care of loading from your workspace for you.
https://code.visualstudio.com/api/get-started/your-first-extension