From 75ced1e5fb3b8ca6545dd2860bdc62c9350faeea Mon Sep 17 00:00:00 2001 From: Peter van Hardenberg Date: Fri, 30 Nov 2018 09:26:51 -0800 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index c17b4c3..a6dc5a5 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,11 @@ Browse & edit Hypermerge documents. This VSCode extension was built to work with * In the File / Documents tab, you should now see a HypermergeFS tab. * Hover over the title of that tab, click the [...] icon, select "Open Document" and paste in a hypermerge document link. +If you want to work on, debug, or develop on the VSCode extension follow these steps instead: + * Check out this repository. + * `npm install` (as of this writing, the repo does not work with yarn because of choices made upstream. patches welcome) + * Open the repository in vscode (e.g. `$ code . `) + * Go to Debug -> Start Debugging (F5) in the menu. + * A second, new VSCode window will open running the extension version you just built. You'll be able to put breakpoints in the code and see debug output in your original window. The new window will be labeled \[Extension Development\] so you can recognize it. + You're off to the races!