Files
vscode-extension-samples/lsp-user-input-sample
dependabot[bot] 6f5b128861 Bump ansi-regex from 5.0.0 to 5.0.1 in /lsp-user-input-sample
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases)
- [Commits](https://github.com/chalk/ansi-regex/compare/v5.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: ansi-regex
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-13 22:31:55 +00:00
..
2021-08-04 17:00:45 +02:00
2022-02-28 13:45:21 -08:00
2022-02-28 13:45:21 -08:00
2019-11-15 19:19:44 +01:00
2019-11-15 19:19:44 +01:00
2022-02-28 13:45:21 -08:00

LSP UI Example

Sample to demonstrate UI support for code actions in LSP

Functionality

This Language Server works for plain text file. It has the following language features:

  • Diagnostics
  • Code Actions with UI

Structure

.
├── client // Language Client
│   ├── src
│   │   └── extension.ts // Language Client entry point
├── package.json // The extension manifest.
└── server // Language Server
    └── src
        └── sampleServer.ts // Language Server entry point

Running the Sample

  • Run npm install in this folder. This installs all necessary npm modules in both the client and server folder
  • Open VS Code on this folder.
  • Press Ctrl+Shift+B to compile the client and server.
  • Switch to the Debug viewlet.
  • Select Launch Client from the drop down.
  • Run the launch config.
  • If you want to debug the server as well use the launch configuration Attach to Server
  • In the [Extension Development Host] instance of VSCode, open a document in 'plain text' language mode.
    • Activate code action on the error on the first line.