summaryrefslogtreecommitdiff
path: root/extension/src
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 19:45:17 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 19:45:17 -0400
commit27be51addfbf146962efed0221c26431353c326a (patch)
tree88e3fd4f32bf02734a79be83d437c5e1cf86b192 /extension/src
parent725b4f00ff6699e0ea52b7bd7bf03398dfa22016 (diff)
parent85b19295941c272f3a6250ecab6126d45d357d6a (diff)
downloadsncontinue-27be51addfbf146962efed0221c26431353c326a.tar.gz
sncontinue-27be51addfbf146962efed0221c26431353c326a.tar.bz2
sncontinue-27be51addfbf146962efed0221c26431353c326a.zip
Merge branch 'docs'
Diffstat (limited to 'extension/src')
-rw-r--r--extension/src/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/extension/src/README.md b/extension/src/README.md
index bb10f5c8..76b96ea0 100644
--- a/extension/src/README.md
+++ b/extension/src/README.md
@@ -22,23 +22,23 @@
10. Then run `npm run compile`
-7. Open `src/activate.ts` file (or any TypeScript file)
+11. Open `src/activate.ts` file (or any TypeScript file)
-7. Press `F5` on your keyboard to start `Run and Debug` mode
+12. Press `F5` on your keyboard to start `Run and Debug` mode
-8. `cmd+shift+p` to look at developer console and select Continue commands
+13. `cmd+shift+p` to look at developer console and select Continue commands
-9. Every time you make changes to the code, you need to run `npm run compile`
+14. Every time you make changes to the code, you need to run `npm run compile`
-10. If you run into a "command not found" error, try running `npm run rebuild` and then `npm run compile`
+15. If you run into a "command not found" error, try running `npm run rebuild` and then `npm run compile`
## Alternative: Install a packaged version
-You should always have a packaged version installed in VSCode, because when Continue is broken you'll want a stable version to help you debug. There are four key commands in the `package.json`:
+You should always have a packaged version installed in VS Code, because when Continue is broken you'll want a stable version to help you debug. There are four key commands in the `package.json`:
1. `npm run package` will create a .vsix file in the `build/` folder that can then be installed. It is this same file that you can share with others who want to try the extension.
-2. `npm run install-extension` will install the extension to VSCode. You should then see it in your installed extensions in the VSCode sidebar.
+2. `npm run install-extension` will install the extension to VS Code. You should then see it in your installed extensions in the VS Code sidebar.
3. `npm run uninstall` will uninstall the extension. You don't always have to do this thanks to the reinstall command, but can be useful when you want to do so manually.