From beb107fc8b6337e68fa4b3bac70d3b4c4b94b977 Mon Sep 17 00:00:00 2001 From: geppy Date: Thu, 3 May 2018 15:30:38 -0700 Subject: [PATCH 1/2] update quickstart instructions --- extension-samples-quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension-samples-quickstart.md b/extension-samples-quickstart.md index 721b856c..bc42932f 100644 --- a/extension-samples-quickstart.md +++ b/extension-samples-quickstart.md @@ -5,7 +5,7 @@ extensions. ## Get up and running straight away -* Launch `npm run install-all` in terminal in the root folder to initialize all samples +* Launch `npm install` in terminal in the root folder to initialize all samples * Open the debug view and select the sample to launch * set breakpoints in your code inside the samples extension.ts to debug an extension * find output from your extension in the debug console From 88153d9eb457bb21c4f57bc8a6cb657578ef63d0 Mon Sep 17 00:00:00 2001 From: geppy Date: Thu, 3 May 2018 15:44:01 -0700 Subject: [PATCH 2/2] update quickstart pluralizations --- extension-samples-quickstart.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/extension-samples-quickstart.md b/extension-samples-quickstart.md index bc42932f..d84df700 100644 --- a/extension-samples-quickstart.md +++ b/extension-samples-quickstart.md @@ -1,17 +1,16 @@ -# Welcome to the decorator sample +# Welcome to the extension samples -## What's in the folder -* This folder contains a sample VS code extensions that demonstrates various API avaiable to VS code -extensions. +## What's here +* These folders contain sample [VS Code extensions](https://code.visualstudio.com/docs/extensions/overview) that demonstrate various extension APIs. ## Get up and running straight away * Launch `npm install` in terminal in the root folder to initialize all samples * Open the debug view and select the sample to launch -* set breakpoints in your code inside the samples extension.ts to debug an extension +* set breakpoints inside a sample's `extension.ts` to debug an extension * find output from your extension in the debug console ## Make changes -* you can relaunch a sample from the debug toolbar after changing code in extension.ts +* you can relaunch a sample from the debug toolbar after changing code in `extension.ts` * you can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes ## Explore the API