From 945d6c8ecbecdd64f6681b347451ef3d59abef6c Mon Sep 17 00:00:00 2001 From: Niklas Mollenhauer Date: Sat, 14 Apr 2018 17:17:00 +0200 Subject: [PATCH] Change `client` folder to `lsp-sample` There is no `.vscode` folder inside the `client` folder that holds some launch configration. The parent directory contains a `.vscode` with a `launch.json` which defines 'Launch Client'. --- 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 28b94434..b6318ca7 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 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. +* open the `lsp-sample` 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.