microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
192368ca666ac37f8e97dc3a73e3e8efbff1da3f

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

language_service/README.md

11lines · modecode

1# Q# Language Service
2
3This crate contains the implementation of Q# editor features such as
4auto-complete, go-to-definition and hover.
5
6The interface for the language service is based on the
7[Language Server Protocol](https://microsoft.github.io/language-server-protocol/specifications/specification-current),
8even though a true LSP server implementation is not provided here.
9Following the LSP protocol makes it easy to use the implementation in
10a variety of editors (Monaco, VS Code, JupyterLab) whose extension APIs
11either use LSP or map closely to LSP concepts.
12