From 7082ab9eee8a65eb5edb69663f3ac52d858e12a7 Mon Sep 17 00:00:00 2001 From: Raymond Camden Date: Fri, 6 Apr 2018 14:38:59 -0500 Subject: [PATCH 1/2] Update README.md --- lsp-sample/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lsp-sample/README.md b/lsp-sample/README.md index 19471b6c..b23d2ea2 100644 --- a/lsp-sample/README.md +++ b/lsp-sample/README.md @@ -15,7 +15,7 @@ The language server is located in the 'server' folder. # How to run locally * `npm install` to initialize the extension and the server * `npm run compile` to compile the extension and the server -* open this folder in VS Code. In the Debug viewlet, run 'Launch Client' from drop-down to launch the extension and attach to the extension. +* open thie `client` folder in VS Code. In the Debug viewlet, run 'Launch Client' from drop-down to launch the extension and attach to the extension. * create a file `test.txt`, and type `typescript`. You should see a validation error. * to debug the server use the 'Attach to Server' launch config. -* set breakpoints in the client or the server. \ No newline at end of file +* set breakpoints in the client or the server. From 3ca04aaa0fd61964a56c61cb6e7dcad2ca3c8134 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Fri, 6 Apr 2018 12:52:59 -0700 Subject: [PATCH 2/2] Fix typo --- lsp-sample/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp-sample/README.md b/lsp-sample/README.md index b23d2ea2..28b94434 100644 --- a/lsp-sample/README.md +++ b/lsp-sample/README.md @@ -15,7 +15,7 @@ The language server is located in the 'server' folder. # How to run locally * `npm install` to initialize the extension and the server * `npm run compile` to compile the extension and the server -* open thie `client` folder in VS Code. In the Debug viewlet, run 'Launch Client' from drop-down to launch the extension and attach to the extension. +* open the `client` folder in VS Code. In the Debug viewlet, run 'Launch Client' from drop-down to launch the extension and attach to the extension. * create a file `test.txt`, and type `typescript`. You should see a validation error. * to debug the server use the 'Attach to Server' launch config. * set breakpoints in the client or the server.