gh-pages d2e2025564e9 cached
248 files
2.7 MB
713.1k tokens
58 symbols
1 requests
Download .txt
Showing preview only (2,848K chars total). Download the full file or copy to clipboard to get everything.
Repository: microsoft/language-server-protocol
Branch: gh-pages
Commit: d2e2025564e9
Files: 248
Total size: 2.7 MB

Directory structure:
gitextract_erdqocs0/

├── .gitattributes
├── .gitignore
├── .vscode/
│   ├── settings.json
│   ├── spellright.dict
│   └── tasks.json
├── 404.html
├── Gemfile
├── License-code.txt
├── License.txt
├── SECURITY.md
├── ThirdPartyNotices.txt
├── _config.yml
├── _data/
│   ├── base-0-9-toc.yml
│   ├── linkableTypes.yml
│   ├── lsif-0-4-0-toc.yml
│   ├── lsif-0-5-0-toc.yml
│   ├── lsif-0-6-0-toc.yml
│   ├── overviews.yml
│   ├── specification-3-14-toc.yml
│   ├── specification-3-15-toc.yml
│   ├── specification-3-16-toc.yml
│   ├── specification-3-17-toc.yml
│   ├── specification-3-18-toc.yml
│   └── specifications.yml
├── _implementors/
│   ├── sdks.md
│   ├── servers.md
│   ├── tools.md
│   └── utilities.md
├── _includes/
│   ├── cookie_notice.html
│   ├── footer.html
│   ├── head.html
│   ├── js_files.html
│   ├── messages/
│   │   ├── 3.17/
│   │   │   ├── exit.md
│   │   │   ├── initialized.md
│   │   │   ├── logMessage.md
│   │   │   ├── logTrace.md
│   │   │   ├── registerCapability.md
│   │   │   ├── setTrace.md
│   │   │   ├── showMessage.md
│   │   │   ├── showMessageRequest.md
│   │   │   ├── shutdown.md
│   │   │   ├── telemetryEvent.md
│   │   │   └── unregisterCapability.md
│   │   └── 3.18/
│   │       ├── exit.md
│   │       ├── initialized.md
│   │       ├── logMessage.md
│   │       ├── logTrace.md
│   │       ├── registerCapability.md
│   │       ├── setTrace.md
│   │       ├── showMessage.md
│   │       ├── showMessageRequest.md
│   │       ├── shutdown.md
│   │       ├── telemetryEvent.md
│   │       └── unregisterCapability.md
│   ├── topnav.html
│   └── types/
│       ├── enumerations.md
│       ├── traceValue.md
│       └── uri.md
├── _layouts/
│   ├── default.html
│   ├── implementors.html
│   ├── overview.html
│   ├── redirect.html
│   ├── singlePage.html
│   └── specifications.html
├── _overviews/
│   ├── lsif/
│   │   └── overview.md
│   └── lsp/
│       └── overview.md
├── _specifications/
│   ├── base/
│   │   └── 0.9/
│   │       └── specification.md
│   ├── lsif/
│   │   ├── 0.4.0/
│   │   │   ├── implementation.md
│   │   │   └── specification.md
│   │   ├── 0.5.0/
│   │   │   ├── implementation.md
│   │   │   └── specification.md
│   │   └── 0.6.0/
│   │       ├── implementation.md
│   │       └── specification.md
│   ├── lsp/
│   │   ├── 3.17/
│   │   │   ├── general/
│   │   │   │   └── initialize.md
│   │   │   ├── language/
│   │   │   │   ├── callHierarchy.md
│   │   │   │   ├── codeAction.md
│   │   │   │   ├── codeLens.md
│   │   │   │   ├── colorPresentation.md
│   │   │   │   ├── completion.md
│   │   │   │   ├── declaration.md
│   │   │   │   ├── definition.md
│   │   │   │   ├── documentColor.md
│   │   │   │   ├── documentHighlight.md
│   │   │   │   ├── documentLink.md
│   │   │   │   ├── documentSymbol.md
│   │   │   │   ├── foldingRange.md
│   │   │   │   ├── formatting.md
│   │   │   │   ├── hover.md
│   │   │   │   ├── implementation.md
│   │   │   │   ├── inlayHint.md
│   │   │   │   ├── inlineValue.md
│   │   │   │   ├── linkedEditingRange.md
│   │   │   │   ├── moniker.md
│   │   │   │   ├── onTypeFormatting.md
│   │   │   │   ├── publishDiagnostics.md
│   │   │   │   ├── pullDiagnostics.md
│   │   │   │   ├── rangeFormatting.md
│   │   │   │   ├── references.md
│   │   │   │   ├── rename.md
│   │   │   │   ├── selectionRange.md
│   │   │   │   ├── semanticTokens.md
│   │   │   │   ├── signatureHelp.md
│   │   │   │   ├── typeDefinition.md
│   │   │   │   └── typeHierarchy.md
│   │   │   ├── metaModel/
│   │   │   │   ├── metaModel.json
│   │   │   │   ├── metaModel.schema.json
│   │   │   │   └── metaModel.ts
│   │   │   ├── notebookDocument/
│   │   │   │   └── notebook.md
│   │   │   ├── specification.md
│   │   │   ├── textDocument/
│   │   │   │   ├── didChange.md
│   │   │   │   ├── didClose.md
│   │   │   │   ├── didOpen.md
│   │   │   │   ├── didRename.md
│   │   │   │   ├── didSave.md
│   │   │   │   ├── willSave.md
│   │   │   │   └── willSaveWaitUntil.md
│   │   │   ├── types/
│   │   │   │   ├── command.md
│   │   │   │   ├── diagnostic.md
│   │   │   │   ├── documentFilter.md
│   │   │   │   ├── location.md
│   │   │   │   ├── locationLink.md
│   │   │   │   ├── markupContent.md
│   │   │   │   ├── partialResultParams.md
│   │   │   │   ├── partialResults.md
│   │   │   │   ├── position.md
│   │   │   │   ├── range.md
│   │   │   │   ├── regexp.md
│   │   │   │   ├── resourceChanges.md
│   │   │   │   ├── textDocumentEdit.md
│   │   │   │   ├── textDocumentIdentifier.md
│   │   │   │   ├── textDocumentItem.md
│   │   │   │   ├── textDocumentPositionParams.md
│   │   │   │   ├── textDocuments.md
│   │   │   │   ├── textEdit.md
│   │   │   │   ├── textEditArray.md
│   │   │   │   ├── versionedTextDocumentIdentifier.md
│   │   │   │   ├── workDoneProgress.md
│   │   │   │   └── workspaceEdit.md
│   │   │   ├── window/
│   │   │   │   ├── showDocument.md
│   │   │   │   ├── workDoneProgressCancel.md
│   │   │   │   └── workDoneProgressCreate.md
│   │   │   └── workspace/
│   │   │       ├── applyEdit.md
│   │   │       ├── configuration.md
│   │   │       ├── didChangeConfiguration.md
│   │   │       ├── didChangeWatchedFiles.md
│   │   │       ├── didChangeWorkspaceFolders.md
│   │   │       ├── didCreateFiles.md
│   │   │       ├── didDeleteFiles.md
│   │   │       ├── didRenameFiles.md
│   │   │       ├── executeCommand.md
│   │   │       ├── symbol.md
│   │   │       ├── willCreateFiles.md
│   │   │       ├── willDeleteFiles.md
│   │   │       ├── willRenameFiles.md
│   │   │       └── workspaceFolders.md
│   │   └── 3.18/
│   │       ├── general/
│   │       │   └── initialize.md
│   │       ├── language/
│   │       │   ├── callHierarchy.md
│   │       │   ├── codeAction.md
│   │       │   ├── codeLens.md
│   │       │   ├── colorPresentation.md
│   │       │   ├── completion.md
│   │       │   ├── declaration.md
│   │       │   ├── definition.md
│   │       │   ├── documentColor.md
│   │       │   ├── documentHighlight.md
│   │       │   ├── documentLink.md
│   │       │   ├── documentSymbol.md
│   │       │   ├── foldingRange.md
│   │       │   ├── formatting.md
│   │       │   ├── hover.md
│   │       │   ├── implementation.md
│   │       │   ├── inlayHint.md
│   │       │   ├── inlineCompletion.md
│   │       │   ├── inlineValue.md
│   │       │   ├── linkedEditingRange.md
│   │       │   ├── moniker.md
│   │       │   ├── onTypeFormatting.md
│   │       │   ├── publishDiagnostics.md
│   │       │   ├── pullDiagnostics.md
│   │       │   ├── rangeFormatting.md
│   │       │   ├── references.md
│   │       │   ├── rename.md
│   │       │   ├── selectionRange.md
│   │       │   ├── semanticTokens.md
│   │       │   ├── signatureHelp.md
│   │       │   ├── typeDefinition.md
│   │       │   └── typeHierarchy.md
│   │       ├── metaModel/
│   │       │   ├── metaModel.json
│   │       │   ├── metaModel.schema.json
│   │       │   └── metaModel.ts
│   │       ├── notebookDocument/
│   │       │   └── notebook.md
│   │       ├── specification.md
│   │       ├── textDocument/
│   │       │   ├── didChange.md
│   │       │   ├── didClose.md
│   │       │   ├── didOpen.md
│   │       │   ├── didRename.md
│   │       │   ├── didSave.md
│   │       │   ├── willSave.md
│   │       │   └── willSaveWaitUntil.md
│   │       ├── types/
│   │       │   ├── command.md
│   │       │   ├── diagnostic.md
│   │       │   ├── documentFilter.md
│   │       │   ├── location.md
│   │       │   ├── locationLink.md
│   │       │   ├── markupContent.md
│   │       │   ├── partialResultParams.md
│   │       │   ├── partialResults.md
│   │       │   ├── patterns.md
│   │       │   ├── position.md
│   │       │   ├── range.md
│   │       │   ├── regexp.md
│   │       │   ├── resourceChanges.md
│   │       │   ├── stringValue.md
│   │       │   ├── textDocumentEdit.md
│   │       │   ├── textDocumentIdentifier.md
│   │       │   ├── textDocumentItem.md
│   │       │   ├── textDocumentPositionParams.md
│   │       │   ├── textDocuments.md
│   │       │   ├── textEdit.md
│   │       │   ├── textEditArray.md
│   │       │   ├── versionedTextDocumentIdentifier.md
│   │       │   ├── workDoneProgress.md
│   │       │   └── workspaceEdit.md
│   │       ├── window/
│   │       │   ├── showDocument.md
│   │       │   ├── workDoneProgressCancel.md
│   │       │   └── workDoneProgressCreate.md
│   │       └── workspace/
│   │           ├── applyEdit.md
│   │           ├── configuration.md
│   │           ├── didChangeConfiguration.md
│   │           ├── didChangeWatchedFiles.md
│   │           ├── didChangeWorkspaceFolders.md
│   │           ├── didCreateFiles.md
│   │           ├── didDeleteFiles.md
│   │           ├── didRenameFiles.md
│   │           ├── executeCommand.md
│   │           ├── symbol.md
│   │           ├── textDocumentContent.md
│   │           ├── willCreateFiles.md
│   │           ├── willDeleteFiles.md
│   │           ├── willRenameFiles.md
│   │           └── workspaceFolders.md
│   ├── specification-3-14.md
│   ├── specification-3-15.md
│   └── specification-3-16.md
├── css/
│   └── main.scss
├── index.html
├── js/
│   └── page.js
└── resources/
    └── notes.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitattributes
================================================
* text=auto

License.txt eol=crlf
ThirdPartyNotices.txt eol=crlf

================================================
FILE: .gitignore
================================================
npm-debug.log
_site/
.bundle/
vendor/
.jekyll-metadata

================================================
FILE: .vscode/settings.json
================================================
{
	"editor.rulers": [
		80
	],
	"cSpell.words": [
		"ABAP",
		"EBNF",
		"LSIF",
		"Naur",
		"RGBA",
		"Retriggers",
		"Struct",
		"Sublime's",
		"Unregistration",
		"bibtex",
		"diagnostic's",
		"downcase",
		"hover's",
		"lightbulbs",
		"queryable",
		"quickfix",
		"refactorings",
		"retrigger",
		"sectionid",
		"textedit",
		"transactionally",
		"uhhhh",
		"uinteger",
		"unregister",
		"unregisterations",
		"unregistrations",
		"upcase",
		"workspaceedit"
	],
	"git.branchProtection": [
		"gh-pages"
	]
}

================================================
FILE: .vscode/spellright.dict
================================================
params
BibTeX
Coffeescript
Dockerfile
Ini
LaTeX
Makefile
Powershell
cshtml
ShaderLab
TeX
TextDocumentPositionParams
sectionid
vscode
vscode-jsonrpc
vscode-languageserver-protocol
boolean
npm
inlined


================================================
FILE: .vscode/tasks.json
================================================
{
	// See https://go.microsoft.com/fwlink/?LinkId=733558
	// for the documentation about the tasks.json format
	"version": "2.0.0",
	"tasks": [
		{
			"label": "Jekyll",
			"type": "shell",
			"command": "bundle exec jekyll serve",
			"problemMatcher": []
		}
	]
}

================================================
FILE: 404.html
================================================
---
layout: default
---

<div class="container text-center">
    <p>The page you are looking for cannot be found.</p>
    <h2>404</h2>
</div>


================================================
FILE: Gemfile
================================================
source "https://rubygems.org"
ruby RUBY_VERSION

# gem "jekyll", "3.6.2"

# to use GitHub Pages
# gem "github-pages", group: :jekyll_plugins

gem "github-pages", "~> 232", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
   gem "jemoji"
   gem 'jekyll-redirect-from'
   gem "jekyll-remote-theme"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]


gem "webrick", "~> 1.8"


================================================
FILE: License-code.txt
================================================
MIT License

Copyright (c) Microsoft Corporation.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE

================================================
FILE: License.txt
================================================
Attribution 4.0 International

=======================================================================

Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.

Using Creative Commons Public Licenses

Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.

     Considerations for licensors: Our public licenses are
     intended for use by those authorized to give the public
     permission to use material in ways otherwise restricted by
     copyright and certain other rights. Our licenses are
     irrevocable. Licensors should read and understand the terms
     and conditions of the license they choose before applying it.
     Licensors should also secure all rights necessary before
     applying our licenses so that the public can reuse the
     material as expected. Licensors should clearly mark any
     material not subject to the license. This includes other CC-
     licensed material, or material used under an exception or
     limitation to copyright. More considerations for licensors:
	wiki.creativecommons.org/Considerations_for_licensors

     Considerations for the public: By using one of our public
     licenses, a licensor grants the public permission to use the
     licensed material under specified terms and conditions. If
     the licensor's permission is not necessary for any reason--for
     example, because of any applicable exception or limitation to
     copyright--then that use is not regulated by the license. Our
     licenses grant only permissions under copyright and certain
     other rights that a licensor has authority to grant. Use of
     the licensed material may still be restricted for other
     reasons, including because others have copyright or other
     rights in the material. A licensor may make special requests,
     such as asking that all changes be marked or described.
     Although not required by our licenses, you are encouraged to
     respect those requests where reasonable. More_considerations
     for the public:
	wiki.creativecommons.org/Considerations_for_licensees

=======================================================================

Creative Commons Attribution 4.0 International Public License

By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.


Section 1 -- Definitions.

  a. Adapted Material means material subject to Copyright and Similar
     Rights that is derived from or based upon the Licensed Material
     and in which the Licensed Material is translated, altered,
     arranged, transformed, or otherwise modified in a manner requiring
     permission under the Copyright and Similar Rights held by the
     Licensor. For purposes of this Public License, where the Licensed
     Material is a musical work, performance, or sound recording,
     Adapted Material is always produced where the Licensed Material is
     synched in timed relation with a moving image.

  b. Adapter's License means the license You apply to Your Copyright
     and Similar Rights in Your contributions to Adapted Material in
     accordance with the terms and conditions of this Public License.

  c. Copyright and Similar Rights means copyright and/or similar rights
     closely related to copyright including, without limitation,
     performance, broadcast, sound recording, and Sui Generis Database
     Rights, without regard to how the rights are labeled or
     categorized. For purposes of this Public License, the rights
     specified in Section 2(b)(1)-(2) are not Copyright and Similar
     Rights.

  d. Effective Technological Measures means those measures that, in the
     absence of proper authority, may not be circumvented under laws
     fulfilling obligations under Article 11 of the WIPO Copyright
     Treaty adopted on December 20, 1996, and/or similar international
     agreements.

  e. Exceptions and Limitations means fair use, fair dealing, and/or
     any other exception or limitation to Copyright and Similar Rights
     that applies to Your use of the Licensed Material.

  f. Licensed Material means the artistic or literary work, database,
     or other material to which the Licensor applied this Public
     License.

  g. Licensed Rights means the rights granted to You subject to the
     terms and conditions of this Public License, which are limited to
     all Copyright and Similar Rights that apply to Your use of the
     Licensed Material and that the Licensor has authority to license.

  h. Licensor means the individual(s) or entity(ies) granting rights
     under this Public License.

  i. Share means to provide material to the public by any means or
     process that requires permission under the Licensed Rights, such
     as reproduction, public display, public performance, distribution,
     dissemination, communication, or importation, and to make material
     available to the public including in ways that members of the
     public may access the material from a place and at a time
     individually chosen by them.

  j. Sui Generis Database Rights means rights other than copyright
     resulting from Directive 96/9/EC of the European Parliament and of
     the Council of 11 March 1996 on the legal protection of databases,
     as amended and/or succeeded, as well as other essentially
     equivalent rights anywhere in the world.

  k. You means the individual or entity exercising the Licensed Rights
     under this Public License. Your has a corresponding meaning.


Section 2 -- Scope.

  a. License grant.

       1. Subject to the terms and conditions of this Public License,
          the Licensor hereby grants You a worldwide, royalty-free,
          non-sublicensable, non-exclusive, irrevocable license to
          exercise the Licensed Rights in the Licensed Material to:

            a. reproduce and Share the Licensed Material, in whole or
               in part; and

            b. produce, reproduce, and Share Adapted Material.

       2. Exceptions and Limitations. For the avoidance of doubt, where
          Exceptions and Limitations apply to Your use, this Public
          License does not apply, and You do not need to comply with
          its terms and conditions.

       3. Term. The term of this Public License is specified in Section
          6(a).

       4. Media and formats; technical modifications allowed. The
          Licensor authorizes You to exercise the Licensed Rights in
          all media and formats whether now known or hereafter created,
          and to make technical modifications necessary to do so. The
          Licensor waives and/or agrees not to assert any right or
          authority to forbid You from making technical modifications
          necessary to exercise the Licensed Rights, including
          technical modifications necessary to circumvent Effective
          Technological Measures. For purposes of this Public License,
          simply making modifications authorized by this Section 2(a)
          (4) never produces Adapted Material.

       5. Downstream recipients.

            a. Offer from the Licensor -- Licensed Material. Every
               recipient of the Licensed Material automatically
               receives an offer from the Licensor to exercise the
               Licensed Rights under the terms and conditions of this
               Public License.

            b. No downstream restrictions. You may not offer or impose
               any additional or different terms or conditions on, or
               apply any Effective Technological Measures to, the
               Licensed Material if doing so restricts exercise of the
               Licensed Rights by any recipient of the Licensed
               Material.

       6. No endorsement. Nothing in this Public License constitutes or
          may be construed as permission to assert or imply that You
          are, or that Your use of the Licensed Material is, connected
          with, or sponsored, endorsed, or granted official status by,
          the Licensor or others designated to receive attribution as
          provided in Section 3(a)(1)(A)(i).

  b. Other rights.

       1. Moral rights, such as the right of integrity, are not
          licensed under this Public License, nor are publicity,
          privacy, and/or other similar personality rights; however, to
          the extent possible, the Licensor waives and/or agrees not to
          assert any such rights held by the Licensor to the limited
          extent necessary to allow You to exercise the Licensed
          Rights, but not otherwise.

       2. Patent and trademark rights are not licensed under this
          Public License.

       3. To the extent possible, the Licensor waives any right to
          collect royalties from You for the exercise of the Licensed
          Rights, whether directly or through a collecting society
          under any voluntary or waivable statutory or compulsory
          licensing scheme. In all other cases the Licensor expressly
          reserves any right to collect such royalties.


Section 3 -- License Conditions.

Your exercise of the Licensed Rights is expressly made subject to the
following conditions.

  a. Attribution.

       1. If You Share the Licensed Material (including in modified
          form), You must:

            a. retain the following if it is supplied by the Licensor
               with the Licensed Material:

                 i. identification of the creator(s) of the Licensed
                    Material and any others designated to receive
                    attribution, in any reasonable manner requested by
                    the Licensor (including by pseudonym if
                    designated);

                ii. a copyright notice;

               iii. a notice that refers to this Public License;

                iv. a notice that refers to the disclaimer of
                    warranties;

                 v. a URI or hyperlink to the Licensed Material to the
                    extent reasonably practicable;

            b. indicate if You modified the Licensed Material and
               retain an indication of any previous modifications; and

            c. indicate the Licensed Material is licensed under this
               Public License, and include the text of, or the URI or
               hyperlink to, this Public License.

       2. You may satisfy the conditions in Section 3(a)(1) in any
          reasonable manner based on the medium, means, and context in
          which You Share the Licensed Material. For example, it may be
          reasonable to satisfy the conditions by providing a URI or
          hyperlink to a resource that includes the required
          information.

       3. If requested by the Licensor, You must remove any of the
          information required by Section 3(a)(1)(A) to the extent
          reasonably practicable.

       4. If You Share Adapted Material You produce, the Adapter's
          License You apply must not prevent recipients of the Adapted
          Material from complying with this Public License.


Section 4 -- Sui Generis Database Rights.

Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:

  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
     to extract, reuse, reproduce, and Share all or a substantial
     portion of the contents of the database;

  b. if You include all or a substantial portion of the database
     contents in a database in which You have Sui Generis Database
     Rights, then the database in which You have Sui Generis Database
     Rights (but not its individual contents) is Adapted Material; and

  c. You must comply with the conditions in Section 3(a) if You Share
     all or a substantial portion of the contents of the database.

For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.


Section 5 -- Disclaimer of Warranties and Limitation of Liability.

  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.

  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.

  c. The disclaimer of warranties and limitation of liability provided
     above shall be interpreted in a manner that, to the extent
     possible, most closely approximates an absolute disclaimer and
     waiver of all liability.


Section 6 -- Term and Termination.

  a. This Public License applies for the term of the Copyright and
     Similar Rights licensed here. However, if You fail to comply with
     this Public License, then Your rights under this Public License
     terminate automatically.

  b. Where Your right to use the Licensed Material has terminated under
     Section 6(a), it reinstates:

       1. automatically as of the date the violation is cured, provided
          it is cured within 30 days of Your discovery of the
          violation; or

       2. upon express reinstatement by the Licensor.

     For the avoidance of doubt, this Section 6(b) does not affect any
     right the Licensor may have to seek remedies for Your violations
     of this Public License.

  c. For the avoidance of doubt, the Licensor may also offer the
     Licensed Material under separate terms or conditions or stop
     distributing the Licensed Material at any time; however, doing so
     will not terminate this Public License.

  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
     License.


Section 7 -- Other Terms and Conditions.

  a. The Licensor shall not be bound by any additional or different
     terms or conditions communicated by You unless expressly agreed.

  b. Any arrangements, understandings, or agreements regarding the
     Licensed Material not stated herein are separate from and
     independent of the terms and conditions of this Public License.


Section 8 -- Interpretation.

  a. For the avoidance of doubt, this Public License does not, and
     shall not be interpreted to, reduce, limit, restrict, or impose
     conditions on any use of the Licensed Material that could lawfully
     be made without permission under this Public License.

  b. To the extent possible, if any provision of this Public License is
     deemed unenforceable, it shall be automatically reformed to the
     minimum extent necessary to make it enforceable. If the provision
     cannot be reformed, it shall be severed from this Public License
     without affecting the enforceability of the remaining terms and
     conditions.

  c. No term or condition of this Public License will be waived and no
     failure to comply consented to unless expressly agreed to by the
     Licensor.

  d. Nothing in this Public License constitutes or may be interpreted
     as a limitation upon, or waiver of, any privileges and immunities
     that apply to the Licensor or You, including from the legal
     processes of any jurisdiction or authority.


=======================================================================

Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.

Creative Commons may be contacted at creativecommons.org.

================================================
FILE: SECURITY.md
================================================
<!-- BEGIN MICROSOFT SECURITY.MD V0.0.7 BLOCK -->

## Security

Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).

If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.

## Reporting Security Issues

**Please do not report security vulnerabilities through public GitHub issues.**

Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).

If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com).  If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).

You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). 

Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:

  * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
  * Full paths of source file(s) related to the manifestation of the issue
  * The location of the affected source code (tag/branch/commit or direct URL)
  * Any special configuration required to reproduce the issue
  * Step-by-step instructions to reproduce the issue
  * Proof-of-concept or exploit code (if possible)
  * Impact of the issue, including how an attacker might exploit the issue

This information will help us triage your report more quickly.

If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.

## Preferred Languages

We prefer all communications to be in English.

## Policy

Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).

<!-- END MICROSOFT SECURITY.MD BLOCK -->


================================================
FILE: ThirdPartyNotices.txt
================================================
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
For Microsoft language-server-protocol

This project incorporates material from the project(s) listed below (collectively, “Third Party Code”).
Microsoft is not the original author of the Third Party Code.  The original copyright notice and license
under which Microsoft received such Third Party Code are set out below. This Third Party Code is licensed
to you under their original license terms set forth below.  Microsoft reserves all other rights not expressly
granted, whether by implication, estoppel or otherwise.

1. Jekyll (https://jekyllrb.com/)

The MIT License (MIT)

Copyright (c) 2008-2017 Tom Preston-Werner and Jekyll contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2. Bootstrap (http://getbootstrap.com/)

The MIT License (MIT)

Copyright (c) 2011-2016 Twitter, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

3. Font Awesome (https://fontawesome.com)

License: https://fontawesome.com/license

4. jemoji (https://github.com/jekyll/jemoji)

The MIT License (MIT)

Copyright (c) 2014-2017 GitHub, Inc. and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

================================================
FILE: _config.yml
================================================
# Site settings
title: Official page for Language Server Protocol
description: >
  Language Server Protocol documentation and specification page.

baseurl: /language-server-protocol # the subpath of your site, e.g. /blog/
url: https://microsoft.github.io # the base hostname & protocol for your site
git_address: https://github.com/Microsoft/language-server-protocol
git_edit_address: https://github.com/Microsoft/language-server-protocol/blob/gh-pages

# Build settings
markdown: kramdown
highlighter: rouge

plugins:
  - github-pages
  - jemoji
  - jekyll-redirect-from


exclude:
  - Gemfile
  - Gemfile.lock
  - .idea/
  - .gitignore
  - README.md
  - resources/
  - vendor/

timezone: Europe/Zurich

defaults:

- scope:
    path: _implementors
    type: implementors
  values:
    layout: implementors
    sectionid: implementors

- scope:
    path: _specifications
    type: specifications
  values:
    layout: specifications
    sectionid: specifications

- scope:
    path: _overviews
    type: overviews
  values:
    layout: overviews
    sectionid: overviews

collections:
  implementors:
    permalink: /:collection/:path/
    output: true
  specifications:
    permalink: /:collection/:path/
    output: true
  overviews:
    permalink: /:collection/:path/
    output: true



================================================
FILE: _data/base-0-9-toc.yml
================================================
- title: Table of Contents
  reveal: baseProtocol
  children:
  - title: Base Protocol
    anchor: baseProtocol
    children:
    - title: Header Part
      anchor: headerPart
    - title: Content Part
      anchor: contentPart
    - title: Capabilities
      anchor: capabilities
    - title: Message Ordering
      anchor: messageOrdering
    - title: Message Documentation
      anchor: messageDocumentation
  - title: JSON Structures
    anchor: basicJsonStructures
    children:
    - title: Base Types
      anchor: baseTypes
    - title: URI
      anchor: uri
    - title: Regular Expression
      anchor: regExp
    - title: Enumerations
      anchor: enumerations
    - title: Abstract Message
      anchor: abstractMessage
    - title: Request Message
      anchor: requestMessage
    - title: Response Message
      anchor: responseMessage
    - title: Notification Message
      anchor: notificationMessage
    - title: Cancellation Support
      anchor: cancelRequest
    - title: Progress Support
      anchor: progress
    - title: Trace Value
      anchor: traceValue
  - title: Lifecycle Messages
    anchor: lifecycle
    children:
    - title: Initialize
      anchor: initialize
    - title: Initialized
      anchor: initialized
    - title: Register Capability
      anchor: client_registerCapability
    - title: Unregister Capability
      anchor: client_unregisterCapability
    - title: Set Trace
      anchor: setTrace
    - title: Log Trace
      anchor: logTrace
    - title: Shutdown
      anchor: shutdown
    - title: Exit
      anchor: exit
  - title: Window Features
    anchor: windowFeatures
    children:
    - title: Show Message Notification
      anchor: window_showMessage
    - title: Show Message Request
      anchor: window_showMessageRequest
    - title: Log Message
      anchor: window_logMessage
    - title: Sent Telemetry
      anchor: telemetry_event

================================================
FILE: _data/linkableTypes.yml
================================================
- name: "Linkable Types"
  children:
  - type: 'integer'
    link: '#integer'
  - type: 'uinteger'
    link: '#uinteger'
  - type: 'decimal'
    link: '#decimal'
  - type: 'BaseAny'
    link: '#baseAny'
  - type: 'LSPAny'
    link: '#lspAny'
  - type: 'BaseObject'
    link: '#baseObject'
  - type: 'LSPObject'
    link: '#lspObject'
  - type: 'BaseArray'
    link: '#baseArray'
  - type: 'LSPArray'
    link: '#lspArray'
  - type: 'Message'
    link: '#message'
  - type: 'RequestMessage'
    link: '#requestMessage'
  - type: 'ResponseMessage'
    link: '#responseMessage'
  - type: 'ResponseError'
    link: '#responseError'
  - type: 'ErrorCodes'
    link: '#errorCodes'
  - type: 'NotificationMessage'
    link: '#notificationMessage'
  - type: 'CancelParams'
    link: '#cancelRequest'
  - type: 'ProgressParams'
    link: '#progress'
  - type: 'ProgressToken'
    link: '#progress'
  - type: 'Uri'
    link: '#uri'
  - type: 'URI'
    link: '#uri'
  - type: 'DocumentUri'
    link: '#documentUri'
  - type: 'RegularExpressionsClientCapabilities'
    link: '#regExp'
  - type: 'TextDocument'
    link: '#textDocuments'
  - type: 'EOL'
    link: '#textDocuments'
  - type: 'Position'
    link: '#position'
  - type: 'PositionEncodingKind'
    link: '#positionEncodingKind'
  - type: 'Range'
    link: '#range'
  - type: 'Location'
    link: '#location'
  - type: 'LocationLink'
    link: '#locationLink'
  - type: 'Diagnostic'
    link: '#diagnostic'
  - type: 'DiagnosticSeverity'
    link: '#diagnosticSeverity'
  - type: 'DiagnosticTag'
    link: '#diagnosticTag'
  - type: 'DiagnosticRelatedInformation'
    link: '#diagnosticRelatedInformation'
  - type: 'CodeDescription'
    link: '#codeDescription'
  - type: 'Command'
    link: '#command'
  - type: 'TextEdit'
    link: '#textEdit'
  - type: 'ChangeAnnotation'
    link: '#changeAnnotation'
  - type: 'ChangeAnnotationIdentifier'
    link: '#changeAnnotationIdentifier'
  - type: 'AnnotatedTextEdit'
    link: '#annotatedTextEdit'
  - type: 'TextDocumentEdit'
    link: '#textDocumentEdit'
  - type: 'CreateFileOptions'
    link: '#createFileOptions'
  - type: 'CreateFile'
    link: '#createFile'
  - type: 'RenameFileOptions'
    link: '#renameFileOptions'
  - type: 'RenameFile'
    link: '#renameFile'
  - type: 'DeleteFileOptions'
    link: '#deleteFileOptions'
  - type: 'DeleteFile'
    link: '#deleteFile'
  - type: 'WorkspaceEdit'
    link: '#workspaceEdit'
  - type: 'WorkspaceEditClientCapabilities'
    link: '#workspaceEditClientCapabilities'
  - type: 'ResourceOperationKind'
    link: '#resourceOperationKind'
  - type: 'FailureHandlingKind'
    link: '#failureHandlingKind'
  - type: 'TextDocumentIdentifier'
    link: '#textDocumentIdentifier'
  - type: 'TextDocumentItem'
    link: '#textDocumentItem'
  - type: 'VersionedTextDocumentIdentifier'
    link: '#versionedTextDocumentIdentifier'
  - type: 'OptionalVersionedTextDocumentIdentifier'
    link: '#optionalVersionedTextDocumentIdentifier'
  - type: 'TextDocumentPositionParams'
    link: '#textDocumentPositionParams'
  - type: 'DocumentFilter'
    link: '#documentFilter'
  - type: 'DocumentSelector'
    link: '#documentSelector'
  - type: 'StaticRegistrationOptions'
    link: '#staticRegistrationOptions'
  - type: 'TextDocumentRegistrationOptions'
    link: '#textDocumentRegistrationOptions'
  - type: 'MarkupKind'
    link: '#markupContent'
  - type: 'MarkupContent'
    link: '#markupContentInnerDefinition'
  - type: 'MarkdownClientCapabilities'
    link: '#markdownClientCapabilities'
  - type: 'WorkDoneProgressBegin'
    link: '#workDoneProgressBegin'
  - type: '$/progress'
    link: '#workDoneProgressBegin'
  - type: 'WorkDoneProgressReport'
    link: '#workDoneProgressReport'
  - type: 'WorkDoneProgressEnd'
    link: '#workDoneProgressEnd'
  - type: 'WorkDoneProgressParams'
    link: '#workDoneProgressParams'
  - type: 'WorkDoneProgressOptions'
    link: '#workDoneProgressOptions'
  - type: 'PartialResultParams'
    link: '#partialResultParams'
  - type: 'TraceValue'
    link: '#traceValue'
  - type: 'InitializeParams'
    link: '#initializeParams'
  - type: 'InitializeResult'
    link: '#initializeResult'
  - type: 'InitializedParams'
    link: '#initialized'
  - type: 'InitializeErrorCodes'
    link: '#initializeErrorCodes'
  - type: 'InitializeError'
    link: '#initializeError'
  - type: 'TextDocumentClientCapabilities'
    link: '#textDocumentClientCapabilities'
  - type: 'NotebookDocumentClientCapabilities'
    link: '#notebookDocumentClientCapabilities'
  - type: 'ClientCapabilities'
    link: '#clientCapabilities'
  - type: 'ServerCapabilities'
    link: '#serverCapabilities'
  - type: 'LogTraceParams'
    link: '#logTrace'
  - type: 'SetTraceParams'
    link: '#setTrace'
  - type: 'ShowMessageParams'
    link: '#window_showMessage'
  - type: 'MessageType'
    link: '#messageType'
  - type: 'ShowMessageRequestClientCapabilities'
    link: '#window_showMessageRequest'
  - type: 'ShowMessageRequestParams'
    link: '#showMessageRequestParams'
  - type: 'MessageActionItem'
    link: '#messageActionItem'
  - type: 'ShowDocumentClientCapabilities'
    link: '#window_showDocument'
  - type: 'ShowDocumentParams'
    link: '#showDocumentParams'
  - type: 'ShowDocumentResult'
    link: '#showDocumentResult'
  - type: 'LogMessageParams'
    link: '#logMessageParams'
  - type: 'WorkDoneProgressCreateParams'
    link: '#window_workDoneProgress_create'
  - type: 'WorkDoneProgressCancelParams'
    link: '#window_workDoneProgress_cancel'
  - type: 'telemetry/event'
    link: '#telemetry_event'
  - type: 'Registration'
    link: '#registration'
  - type: 'RegistrationParams'
    link: '#registrationParams'
  - type: 'Unregistration'
    link: '#unregistration'
  - type: 'UnregistrationParams'
    link: '#unregistrationParams'
  - type: 'WorkspaceFoldersServerCapabilities'
    link: '#workspaceFoldersServerCapabilities'
  - type: 'WorkspaceFolder'
    link: '#workspaceFolder'
  - type: 'workspace/workspaceFolders'
    link: '#workspace_workspaceFolders'
  - type: 'DidChangeWorkspaceFoldersParams'
    link: '#didChangeWorkspaceFoldersParams'
  - type: 'WorkspaceFoldersChangeEvent'
    link: '#workspaceFoldersChangeEvent'
  - type: 'DidChangeConfigurationClientCapabilities'
    link: '#didChangeConfigurationClientCapabilities'
  - type: 'DidChangeConfigurationParams'
    link: '#didChangeConfigurationParams'
  - type: 'ConfigurationParams'
    link: '#configurationParams'
  - type: 'ConfigurationItem'
    link: '#configurationItem'
  - type: 'DidChangeWatchedFilesClientCapabilities'
    link: '#didChangeWatchedFilesClientCapabilities'
  - type: 'DidChangeWatchedFilesRegistrationOptions'
    link: '#didChangeWatchedFilesRegistrationOptions'
  - type: 'Pattern'
    link: '#pattern'
  - type: 'RelativePattern'
    link: '#relativePattern'
  - type: 'GlobPattern'
    link: '#globPattern'
  - type: 'FileSystemWatcher'
    link: '#fileSystemWatcher'
  - type: 'WatchKind'
    link: '#watchKind'
  - type: 'DidChangeWatchedFilesParams'
    link: '#didChangeWatchedFilesParams'
  - type: 'FileEvent'
    link: '#fileEvent'
  - type: 'FileChangeType'
    link: '#fileChangeType'
  - type: 'WorkspaceSymbolClientCapabilities'
    link: '#workspace_symbol'
  - type: 'WorkspaceSymbolOptions'
    link: '#workspaceSymbolOptions'
  - type: 'WorkspaceSymbolRegistrationOptions'
    link: '#workspaceSymbolRegistrationOptions'
  - type: 'WorkspaceSymbolParams'
    link: '#workspaceSymbolParams'
  - type: 'WorkspaceSymbol'
    link: '#workspaceSymbol'
  - type: 'workspace/executeCommand'
    link: '#workspace_executeCommand'
  - type: 'ExecuteCommandClientCapabilities'
    link: '#executeCommandClientCapabilities'
  - type: 'ExecuteCommandOptions'
    link: '#executeCommandOptions'
  - type: 'ExecuteCommandRegistrationOptions'
    link: '#executeCommandRegistrationOptions'
  - type: 'ExecuteCommandParams'
    link: '#executeCommandParams'
  - type: 'workspace/applyEdit'
    link: '#workspace_applyEdit'
  - type: 'ApplyWorkspaceEditParams'
    link: '#applyWorkspaceEditParams'
  - type: 'WorkspaceEditMetadata'
    link: '#workspaceEditMetadata'
  - type: 'ApplyWorkspaceEditResult'
    link: '#applyWorkspaceEditResult'
  - type: 'ApplyWorkspaceEditResponse'
    link: '#applyWorkspaceEditResponse'
  - type: 'workspace/willCreateFiles'
    link: '#workspace_willCreateFiles'
  - type: 'FileOperationRegistrationOptions'
    link: '#fileOperationRegistrationOptions'
  - type: 'FileOperationPatternKind'
    link: '#fileOperationPatternKind'
  - type: 'FileOperationPatternOptions'
    link: '#fileOperationPatternOptions'
  - type: 'FileOperationPattern'
    link: '#fileOperationPattern'
  - type: 'FileOperationFilter'
    link: '#fileOperationFilter'
  - type: 'CreateFilesParams'
    link: '#createFilesParams'
  - type: 'FileCreate'
    link: '#fileCreate'
  - type: 'workspace/didCreateFiles'
    link: '#workspace_didCreateFiles'
  - type: 'workspace/willRenameFiles'
    link: '#workspace_willRenameFiles'
  - type: 'RenameFilesParams'
    link: '#renameFilesParams'
  - type: 'FileRename'
    link: '#fileRename'
  - type: 'workspace/didRenameFiles'
    link: '#workspace_didRenameFiles'
  - type: 'workspace/willDeleteFiles'
    link: '#workspace_willDeleteFiles'
  - type: 'DeleteFilesParams'
    link: '#deleteFilesParams'
  - type: 'FileDelete'
    link: '#fileDelete'
  - type: 'workspace/didDeleteFiles'
    link: '#workspace_didDeleteFiles'
  - type: 'TextDocumentSyncKind'
    link: '#textDocumentSyncKind'
  - type: 'TextDocumentSyncOptions'
    link: '#textDocumentSyncOptions'
  - type: 'textDocument/didOpen'
    link: '#textDocument_didOpen'
  - type: 'DidOpenTextDocumentParams'
    link: '#didOpenTextDocumentParams'
  - type: 'textDocument/didChange'
    link: '#textDocument_didChange'
  - type: 'TextDocumentChangeRegistrationOptions'
    link: '#textDocumentChangeRegistrationOptions'
  - type: 'DidChangeTextDocumentParams'
    link: '#didChangeTextDocumentParams'
  - type: 'TextDocumentContentChangeEvent'
    link: '#textDocumentContentChangeEvent'
  - type: 'textDocument/willSave'
    link: '#textDocument_willSave'
  - type: 'WillSaveTextDocumentParams'
    link: '#willSaveTextDocumentParams'
  - type: 'TextDocumentSaveReason'
    link: '#textDocumentSaveReason'
  - type: 'textDocument/willSaveWaitUntil'
    link: '#textDocument_willSaveWaitUntil'
  - type: 'textDocument/didSave'
    link: '#textDocument_didSave'
  - type: 'SaveOptions'
    link: '#saveOptions'
  - type: 'TextDocumentSaveRegistrationOptions'
    link: '#textDocumentSaveRegistrationOptions'
  - type: 'DidSaveTextDocumentParams'
    link: '#didSaveTextDocumentParams'
  - type: 'textDocument/didClose'
    link: '#textDocument_didClose'
  - type: 'DidCloseTextDocumentParams'
    link: '#didCloseTextDocumentParams'
  - type: 'TextDocumentSyncClientCapabilities'
    link: '#textDocumentSyncClientCapabilities'
  - type: 'TextDocumentSyncKind'
    link: '#textDocumentSyncKind'
  - type: 'TextDocumentSyncOptions'
    link: '#textDocumentSyncOptions'
  - type: 'textDocument/publishDiagnostics'
    link: '#textDocument_publishDiagnostics'
  - type: 'PublishDiagnosticsClientCapabilities'
    link: '#publishDiagnosticsClientCapabilities'
  - type: 'PublishDiagnosticsParams'
    link: '#publishDiagnosticsParams'
  - type: 'textDocument/completion'
    link: '#textDocument_completion'
  - type: 'CompletionClientCapabilities'
    link: '#completionClientCapabilities'
  - type: 'CompletionOptions'
    link: '#completionOptions'
  - type: 'CompletionRegistrationOptions'
    link: '#completionRegistrationOptions'
  - type: 'CompletionParams'
    link: '#completionParams'
  - type: 'CompletionTriggerKind'
    link: '#completionTriggerKind'
  - type: 'CompletionContext'
    link: '#completionContext'
  - type: 'CompletionList'
    link: '#completionList'
  - type: 'InsertTextFormat'
    link: '#insertTextFormat'
  - type: 'CompletionItemTag'
    link: '#completionItemTag'
  - type: 'InsertReplaceEdit'
    link: '#insertReplaceEdit'
  - type: 'InsertTextMode'
    link: '#insertTextMode'
  - type: 'CompletionItemLabelDetails'
    link: '#completionItemLabelDetails'
  - type: 'CompletionItem'
    link: '#completionItem'
  - type: 'CompletionItemKind'
    link: '#completionItemKind'
  - type: 'completionItem/resolve'
    link: '#completionItem_resolve'
  - type: 'textDocument/hover'
    link: '#textDocument_hover'
  - type: 'HoverClientCapabilities'
    link: '#hoverClientCapabilities'
  - type: 'HoverOptions'
    link: '#hoverOptions'
  - type: 'HoverRegistrationOptions'
    link: '#hoverRegistrationOptions'
  - type: 'HoverParams'
    link: '#hoverParams'
  - type: 'Hover'
    link: '#hover'
  - type: 'MarkedString'
    link: '#markedString'
  - type: 'textDocument/signatureHelp'
    link: '#textDocument_signatureHelp'
  - type: 'SignatureHelpClientCapabilities'
    link: '#signatureHelpClientCapabilities'
  - type: 'SignatureHelpOptions'
    link: '#signatureHelpOptions'
  - type: 'SignatureHelpRegistrationOptions'
    link: '#signatureHelpRegistrationOptions'
  - type: 'SignatureHelpParams'
    link: '#signatureHelpParams'
  - type: 'SignatureHelpTriggerKind'
    link: '#signatureHelpTriggerKind'
  - type: 'SignatureHelpContext'
    link: '#signatureHelpContext'
  - type: 'SignatureHelp'
    link: '#signatureHelp'
  - type: 'SignatureInformation'
    link: '#signatureInformation'
  - type: 'ParameterInformation'
    link: '#parameterInformation'
  - type: 'textDocument/declaration'
    link: '#textDocument_declaration'
  - type: 'DeclarationClientCapabilities'
    link: '#declarationClientCapabilities'
  - type: 'DeclarationOptions'
    link: '#declarationOptions'
  - type: 'DeclarationRegistrationOptions'
    link: '#declarationRegistrationOptions'
  - type: 'DeclarationParams'
    link: '#declarationParams'
  - type: 'textDocument/definition'
    link: '#textDocument_definition'
  - type: 'DefinitionClientCapabilities'
    link: '#definitionClientCapabilities'
  - type: 'DefinitionOptions'
    link: '#definitionOptions'
  - type: 'DefinitionRegistrationOptions'
    link: '#definitionRegistrationOptions'
  - type: 'DefinitionParams'
    link: '#definitionParams'
  - type: 'textDocument/typeDefinition'
    link: '#textDocument_typeDefinition'
  - type: 'TypeDefinitionClientCapabilities'
    link: '#typeDefinitionClientCapabilities'
  - type: 'TypeDefinitionOptions'
    link: '#typeDefinitionOptions'
  - type: 'TypeDefinitionRegistrationOptions'
    link: '#typeDefinitionRegistrationOptions'
  - type: 'TypeDefinitionParams'
    link: '#typeDefinitionParams'
  - type: 'textDocument/implementation'
    link: '#textDocument_implementation'
  - type: 'ImplementationClientCapabilities'
    link: '#implementationClientCapabilities'
  - type: 'ImplementationOptions'
    link: '#implementationOptions'
  - type: 'ImplementationRegistrationOptions'
    link: '#implementationRegistrationOptions'
  - type: 'ImplementationParams'
    link: '#implementationParams'
  - type: 'textDocument/references'
    link: '#textDocument_references'
  - type: 'ReferenceClientCapabilities'
    link: '#referenceClientCapabilities'
  - type: 'ReferenceOptions'
    link: '#referenceOptions'
  - type: 'ReferenceRegistrationOptions'
    link: '#referenceRegistrationOptions'
  - type: 'ReferenceParams'
    link: '#referenceParams'
  - type: 'ReferenceContext'
    link: '#referenceContext'
  - type: 'textDocument/documentHighlight'
    link: '#textDocument_documentHighlight'
  - type: 'DocumentHighlightClientCapabilities'
    link: '#documentHighlightClientCapabilities'
  - type: 'DocumentHighlightOptions'
    link: '#documentHighlightOptions'
  - type: 'DocumentHighlightRegistrationOptions'
    link: '#documentHighlightRegistrationOptions'
  - type: 'DocumentHighlightParams'
    link: '#documentHighlightParams'
  - type: 'DocumentHighlight'
    link: '#documentHighlight'
  - type: 'DocumentHighlightKind'
    link: '#documentHighlightKind'
  - type: 'textDocument/documentSymbol'
    link: '#textDocument_documentSymbol'
  - type: 'DocumentSymbolClientCapabilities'
    link: '#documentSymbolClientCapabilities'
  - type: 'DocumentSymbolOptions'
    link: '#documentSymbolOptions'
  - type: 'DocumentSymbolRegistrationOptions'
    link: '#documentSymbolRegistrationOptions'
  - type: 'DocumentSymbolParams'
    link: '#documentSymbolParams'
  - type: 'SymbolKind'
    link: '#symbolKind'
  - type: 'SymbolTag'
    link: '#symbolTag'
  - type: 'DocumentSymbol'
    link: '#documentSymbol'
  - type: 'SymbolInformation'
    link: '#symbolInformation'
  - type: 'textDocument/codeAction'
    link: '#textDocument_codeAction'
  - type: 'CodeActionClientCapabilities'
    link: '#codeActionClientCapabilities'
  - type: 'CodeActionOptions'
    link: '#codeActionOptions'
  - type: 'CodeActionRegistrationOptions'
    link: '#codeActionRegistrationOptions'
  - type: 'CodeActionParams'
    link: '#codeActionParams'
  - type: 'CodeActionKind'
    link: '#codeActionKind'
  - type: 'CodeActionContext'
    link: '#codeActionContext'
  - type: 'CodeActionTriggerKind'
    link: '#codeActionTriggerKind'
  - type: 'CodeAction'
    link: '#codeAction'
  - type: 'codeAction/resolve'
    link: '#codeAction_resolve'
  - type: 'textDocument/codeLens'
    link: '#textDocument_codeLens'
  - type: 'CodeLensClientCapabilities'
    link: '#codeLensClientCapabilities'
  - type: 'CodeLensOptions'
    link: '#codeLensOptions'
  - type: 'CodeLensRegistrationOptions'
    link: '#codeLensRegistrationOptions'
  - type: 'CodeLensParams'
    link: '#codeLensParams'
  - type: 'CodeLens'
    link: '#codeLens'
  - type: 'codeLens/resolve'
    link: '#codeLens_resolve'
  - type: 'CodeLensWorkspaceClientCapabilities'
    link: '#codeLensWorkspaceClientCapabilities'
  - type: 'workspace/codeLens/refresh'
    link: '#codeLens_refresh'
  - type: 'DocumentLinkClientCapabilities'
    link: '#documentLinkClientCapabilities'
  - type: 'textDocument/documentLink'
    link: '#textDocument_documentLink'
  - type: 'DocumentLinkOptions'
    link: '#documentLinkOptions'
  - type: 'DocumentLinkRegistrationOptions'
    link: '#documentLinkRegistrationOptions'
  - type: 'DocumentLinkParams'
    link: '#documentLinkParams'
  - type: 'DocumentLink'
    link: '#documentLink'
  - type: 'documentLink/resolve'
    link: '#documentLink_resolve'
  - type: 'textDocument/documentColor'
    link: '#textDocument_documentColor'
  - type: 'DocumentColorClientCapabilities'
    link: '#documentColorClientCapabilities'
  - type: 'DocumentColorOptions'
    link: '#documentColorOptions'
  - type: 'DocumentColorRegistrationOptions'
    link: '#documentColorRegistrationOptions'
  - type: 'DocumentColorParams'
    link: '#documentColorParams'
  - type: 'ColorInformation'
    link: '#colorInformation'
  - type: 'Color'
    link: '#color'
  - type: 'textDocument/colorPresentation'
    link: '#textDocument_colorPresentation'
  - type: 'ColorPresentationParams'
    link: '#colorPresentationParams'
  - type: 'ColorPresentation'
    link: '#colorPresentation'
  - type: 'DocumentFormattingClientCapabilities'
    link: '#documentFormattingClientCapabilities'
  - type: 'textDocument/formatting'
    link: '#textDocument_formatting'
  - type: 'DocumentFormattingClientCapabilities'
    link: '#documentFormattingClientCapabilities'
  - type: 'DocumentFormattingOptions'
    link: '#documentFormattingOptions'
  - type: 'DocumentFormattingRegistrationOptions'
    link: '#documentFormattingRegistrationOptions'
  - type: 'DocumentFormattingParams'
    link: '#documentFormattingParams'
  - type: 'FormattingOptions'
    link: '#formattingOptions'
  - type: 'textDocument/rangeFormatting'
    link: '#textDocument_rangeFormatting'
  - type: 'DocumentRangeFormattingClientCapabilities'
    link: '#documentRangeFormattingClientCapabilities'
  - type: 'DocumentRangeFormattingOptions'
    link: '#documentRangeFormattingOptions'
  - type: 'DocumentRangeFormattingRegistrationOptions'
    link: '#documentRangeFormattingRegistrationOptions'
  - type: 'DocumentRangeFormattingParams'
    link: '#documentRangeFormattingParams'
  - type: 'DocumentRangesFormattingParams'
    link: '#documentRangesFormattingParams'
  - type: 'DocumentOnTypeFormattingClientCapabilities'
    link: '#documentOnTypeFormattingClientCapabilities'
  - type: 'textDocument/onTypeFormatting'
    link: '#textDocument_onTypeFormatting'
  - type: 'DocumentOnTypeFormattingOptions'
    link: '#documentOnTypeFormattingOptions'
  - type: 'DocumentOnTypeFormattingRegistrationOptions'
    link: '#documentOnTypeFormattingRegistrationOptions'
  - type: 'DocumentOnTypeFormattingParams'
    link: '#documentOnTypeFormattingParams'
  - type: 'PrepareSupportDefaultBehavior'
    link: '#prepareSupportDefaultBehavior'
  - type: 'RenameClientCapabilities'
    link: '#renameClientCapabilities'
  - type: 'RenameOptions'
    link: '#renameOptions'
  - type: 'RenameRegistrationOptions'
    link: '#renameRegistrationOptions'
  - type: 'textDocument/rename'
    link: '#textDocument_rename'
  - type: 'RenameParams'
    link: '#renameParams'
  - type: 'textDocument/prepareRename'
    link: '#textDocument_prepareRename'
  - type: 'PrepareRenameParams'
    link: '#prepareRenameParams'
  - type: 'textDocument/foldingRange'
    link: '#textDocument_foldingRange'
  - type: 'FoldingRangeClientCapabilities'
    link: '#foldingRangeClientCapabilities'
  - type: 'FoldingRangeOptions'
    link: '#foldingRangeOptions'
  - type: 'FoldingRangeRegistrationOptions'
    link: '#foldingRangeRegistrationOptions'
  - type: 'FoldingRangeParams'
    link: '#foldingRangeParams'
  - type: 'FoldingRangeKind'
    link: '#foldingRangeKind'
  - type: 'FoldingRange'
    link: '#foldingRange'
  - type: 'workspace/foldingRange/refresh'
    link: '#workspace_foldingRange_refresh'
  - type: 'FoldingRangeWorkspaceClientCapabilities'
    link: '#foldingRangeWorkspaceClientCapabilities'
  - type: 'textDocument/selectionRange'
    link: '#textDocument_selectionRange'
  - type: 'SelectionRangeClientCapabilities'
    link: '#selectionRangeClientCapabilities'
  - type: 'SelectionRangeOptions'
    link: '#selectionRangeOptions'
  - type: 'SelectionRangeRegistrationOptions'
    link: '#selectionRangeRegistrationOptions'
  - type: 'SelectionRangeParams'
    link: '#selectionRangeParams'
  - type: 'SelectionRange'
    link: '#selectionRange'
  - type: 'textDocument/prepareCallHierarchy'
    link: '#textDocument_prepareCallHierarchy'
  - type: 'CallHierarchyClientCapabilities'
    link: '#callHierarchyClientCapabilities'
  - type: 'CallHierarchyOptions'
    link: '#callHierarchyOptions'
  - type: 'CallHierarchyRegistrationOptions'
    link: '#callHierarchyRegistrationOptions'
  - type: 'CallHierarchyPrepareParams'
    link: '#callHierarchyPrepareParams'
  - type: 'CallHierarchyItem'
    link: '#callHierarchyItem'
  - type: 'callHierarchy/incomingCalls'
    link: '#callHierarchy_incomingCalls'
  - type: 'CallHierarchyIncomingCallsParams'
    link: '#callHierarchyIncomingCallsParams'
  - type: 'CallHierarchyIncomingCall'
    link: '#callHierarchyIncomingCall'
  - type: 'callHierarchy/outgoingCalls'
    link: '#callHierarchy_outgoingCalls'
  - type: 'CallHierarchyOutgoingCallsParams'
    link: '#callHierarchyOutgoingCallsParams'
  - type: 'CallHierarchyOutgoingCall'
    link: '#callHierarchyOutgoingCall'
  - type: 'SemanticTokenTypes'
    link: '#semanticTokenTypes'
  - type: 'SemanticTokenModifiers'
    link: '#semanticTokenModifiers'
  - type: 'TokenFormat'
    link: '#tokenFormat'
  - type: 'SemanticTokensLegend'
    link: '#semanticTokensLegend'
  - type: 'SemanticTokensClientCapabilities'
    link: '#semanticTokensClientCapabilities'
  - type: 'SemanticTokensOptions'
    link: '#semanticTokensOptions'
  - type: 'SemanticTokensRegistrationOptions'
    link: '#semanticTokensRegistrationOptions'
  - type: 'textDocument/semanticTokens/full'
    link: '#semanticTokens_fullRequest'
  - type: 'SemanticTokensParams'
    link: '#semanticTokensParams'
  - type: 'SemanticTokens'
    link: '#semanticTokens'
  - type: 'SemanticTokensPartialResult'
    link: '#semanticTokensPartialResult'
  - type: 'textDocument/semanticTokens/full/delta'
    link: '#semanticTokens_deltaRequest'
  - type: 'SemanticTokensDeltaParams'
    link: '#semanticTokensDeltaParams'
  - type: 'SemanticTokensDelta'
    link: '#semanticTokensDelta'
  - type: 'SemanticTokensEdit'
    link: '#semanticTokensEdit'
  - type: 'SemanticTokensDeltaPartialResult'
    link: '#semanticTokensDeltaPartialResult'
  - type: 'textDocument/semanticTokens/range'
    link: '#semanticTokens_rangeRequest'
  - type: 'SemanticTokensRangeParams'
    link: '#semanticTokensRangeParams'
  - type: 'SemanticTokensWorkspaceClientCapabilities'
    link: '#semanticTokensWorkspaceClientCapabilities'
  - type: 'workspace/semanticTokens/refresh'
    link: '#semanticTokens_refreshRequest'
  - type: 'textDocument/linkedEditingRange'
    link: '#textDocument_linkedEditingRange'
  - type: 'LinkedEditingRangeClientCapabilities'
    link: '#linkedEditingRangeClientCapabilities'
  - type: 'LinkedEditingRangeOptions'
    link: '#linkedEditingRangeOptions'
  - type: 'LinkedEditingRangeRegistrationOptions'
    link: '#linkedEditingRangeRegistrationOptions'
  - type: 'LinkedEditingRangeParams'
    link: '#linkedEditingRangeParams'
  - type: 'LinkedEditingRanges'
    link: '#linkedEditingRanges'
  - type: 'textDocument/moniker'
    link: '#textDocument_moniker'
  - type: 'MonikerClientCapabilities'
    link: '#monikerClientCapabilities'
  - type: 'MonikerOptions'
    link: '#monikerOptions'
  - type: 'MonikerRegistrationOptions'
    link: '#monikerRegistrationOptions'
  - type: 'MonikerParams'
    link: '#monikerParams'
  - type: 'UniquenessLevel'
    link: '#uniquenessLevel'
  - type: 'MonikerKind'
    link: '#monikerKind'
  - type: 'Moniker'
    link: '#moniker'
  - type: 'TypeHierarchyClientCapabilities'
    link: '#typeHierarchyClientCapabilities'
  - type: 'TypeHierarchyOptions'
    link: '#typeHierarchyOptions'
  - type: 'TypeHierarchyRegistrationOptions'
    link: '#typeHierarchyRegistrationOptions'
  - type: 'TypeHierarchyPrepareParams'
    link: '#typeHierarchyPrepareParams'
  - type: 'TypeHierarchyItem'
    link: '#typeHierarchyItem'
  - type: 'TypeHierarchySupertypesParams'
    link: '#typeHierarchySupertypesParams'
  - type: 'TypeHierarchySubtypesParams'
    link: '#typeHierarchySubtypesParams'
  - type: 'InlayHintClientCapabilities'
    link: '#inlayHintClientCapabilities'
  - type: 'InlayHintOptions'
    link: '#inlayHintOptions'
  - type: 'InlayHintRegistrationOptions'
    link: '#inlayHintRegistrationOptions'
  - type: 'InlayHintParams'
    link: '#inlayHintParams'
  - type: 'InlayHint'
    link: '#inlayHint'
  - type: 'InlayHintLabelPart'
    link: '#inlayHintLabelPart'
  - type: 'InlayHintKind'
    link: '#inlayHintKind'
  - type: 'InlayHintWorkspaceClientCapabilities'
    link: '#inlayHintWorkspaceClientCapabilities'
  - type: 'workspace/inlayHint/refresh'
    link: '#workspace_inlayHint_refresh'
  - type: 'InlineValueClientCapabilities'
    link: '#inlineValueClientCapabilities'
  - type: 'InlineValueOptions'
    link: '#inlineValueOptions'
  - type: 'InlineValueRegistrationOptions'
    link: '#inlineValueRegistrationOptions'
  - type: 'InlineValueParams'
    link: '#inlineValueParams'
  - type: 'InlineValueContext'
    link: '#inlineValueContext'
  - type: 'InlineValueText'
    link: '#inlineValueText'
  - type: 'InlineValueVariableLookup'
    link: '#inlineValueVariableLookup'
  - type: 'InlineValueEvaluatableExpression'
    link: '#inlineValueEvaluatableExpression'
  - type: 'InlineValue'
    link: '#inlineValue'
  - type: 'InlineValueWorkspaceClientCapabilities'
    link: '#inlineValueWorkspaceClientCapabilities'
  - type: 'workspace/inlineValue/refresh'
    link: '#workspace_inlineValue_refresh'
  - type: 'NotebookDocument'
    link: '#notebookDocument'
  - type: 'NotebookCell'
    link: '#notebookCell'
  - type: 'NotebookCellKind'
    link: '#notebookCellKind'
  - type: 'ExecutionSummary'
    link: '#executionSummary'
  - type: 'NotebookCellTextDocumentFilter'
    link: '#notebookCellTextDocumentFilter'
  - type: 'NotebookDocumentFilter'
    link: '#notebookDocumentFilter'
  - type: 'NotebookDocumentSyncClientCapabilities'
    link: '#notebookDocumentSyncClientCapabilities'
  - type: 'NotebookDocumentSyncOptions'
    link: '#notebookDocumentSyncOptions'
  - type: 'NotebookDocumentSyncRegistrationOptions'
    link: '#notebookDocumentSyncRegistrationOptions'
  - type: 'notebookDocument/didOpen'
    link: '#notebookDocument_didOpen'
  - type: 'DidOpenNotebookDocumentParams'
    link: '#didOpenNotebookDocumentParams'
  - type: 'notebookDocument/didChange'
    link: '#notebookDocument_didChange'
  - type: 'DidChangeNotebookDocumentParams'
    link: '#didChangeNotebookDocumentParams'
  - type: 'NotebookDocumentChangeEvent'
    link: '#notebookDocumentChangeEvent'
  - type: 'NotebookCellArrayChange'
    link: '#notebookCellArrayChange'
  - type: 'notebookDocument/didSave'
    link: '#notebookDocument_didSave'
  - type: 'DidSaveNotebookDocumentParams'
    link: '#didSaveNotebookDocumentParams'
  - type: 'notebookDocument/didClose'
    link: '#notebookDocument_didClose'
  - type: 'DidCloseNotebookDocumentParams'
    link: '#didCloseNotebookDocumentParams'
  - type: 'NotebookDocumentIdentifier'
    link: '#notebookDocumentIdentifier'
  - type: 'VersionedNotebookDocumentIdentifier'
    link: '#versionedNotebookDocumentIdentifier'
  - type: 'DiagnosticClientCapabilities'
    link: '#diagnosticClientCapabilities'
  - type: 'DiagnosticWorkspaceClientCapabilities'
    link: '#diagnosticWorkspaceClientCapabilities'
  - type: 'DiagnosticOptions'
    link: '#diagnosticOptions'
  - type: 'DiagnosticRegistrationOptions'
    link: '#diagnosticRegistrationOptions'
  - type: 'DocumentDiagnosticParams'
    link: '#documentDiagnosticParams'
  - type: 'DocumentDiagnosticReport'
    link: '#documentDiagnosticReport'
  - type: 'DocumentDiagnosticReportKind'
    link: '#documentDiagnosticReportKind'
  - type: 'FullDocumentDiagnosticReport'
    link: '#fullDocumentDiagnosticReport'
  - type: 'UnchangedDocumentDiagnosticReport'
    link: '#unchangedDocumentDiagnosticReport'
  - type: 'RelatedFullDocumentDiagnosticReport'
    link: '#relatedFullDocumentDiagnosticReport'
  - type: 'RelatedUnchangedDocumentDiagnosticReport'
    link: '#relatedUnchangedDocumentDiagnosticReport'
  - type: 'DocumentDiagnosticReportPartialResult'
    link: '#documentDiagnosticReportPartialResult'
  - type: 'DiagnosticServerCancellationData'
    link: '#diagnosticServerCancellationData'
  - type: 'WorkspaceDiagnosticParams'
    link: '#workspaceDiagnosticParams'
  - type: 'PreviousResultId'
    link: '#previousResultId'
  - type: 'WorkspaceDiagnosticReport'
    link: '#workspaceDiagnosticReport'
  - type: 'WorkspaceFullDocumentDiagnosticReport'
    link: '#workspaceFullDocumentDiagnosticReport'
  - type: 'WorkspaceUnchangedDocumentDiagnosticReport'
    link: '#workspaceUnchangedDocumentDiagnosticReport'
  - type: 'WorkspaceDocumentDiagnosticReport'
    link: '#workspaceDocumentDiagnosticReport'
  - type: 'WorkspaceDiagnosticReportPartialResult'
    link: '#workspaceDiagnosticReportPartialResult'
  - type: 'workspace/diagnostic/refresh'
    link: '#diagnostic_refresh'
  - type: 'textDocument/inlineCompletion'
    link: '#textDocument_inlineCompletion'
  - type: 'InlineCompletionClientCapabilities'
    link: '#inlineCompletionClientCapabilities'
  - type: 'InlineCompletionOptions'
    link: '#inlineCompletionOptions'
  - type: 'InlineCompletionRegistrationOptions'
    link: '#inlineCompletionRegistrationOptions'
  - type: 'InlineCompletionParams'
    link: '#inlineCompletionParams'
  - type: 'InlineCompletionContext'
    link: '#inlineCompletionContext'
  - type: 'InlineCompletionTriggerKind'
    link: '#inlineCompletionTriggerKind'
  - type: 'SelectedCompletionInfo'
    link: '#selectedCompletionInfo'
  - type: 'InlineCompletionList'
    link: '#inlineCompletionList'
  - type: 'InlineCompletionItem'
    link: '#inlineCompletionItem'
  - type: 'StringValue'
    link: '#stringValue'
  - type: 'SnippetTextEdit'
    link: '#snippetTextEdit'

================================================
FILE: _data/lsif-0-4-0-toc.yml
================================================
- title: Table of Contents
  reveal: _general
  children:
  - title: General
    anchor: _general
    children:
    - title: Introduction
      anchor: lsifIntro
    - title: Motivation
      anchor: lsifMotivation
    - title: Ranges
      anchor: ranges
    - title: Result Sets
      anchor: resultSet
  - title: Language Features
    anchor: _languageFeatures
    children:
    - title: definition
      anchor: definition
    - title: declaration
      anchor: declaration
    - title: hover
      anchor: hover
    - title: references
      anchor: references
    - title: implementation
      anchor: implementation
    - title: typeDefinition
      anchor: typeDefinition
    - title: foldingRange
      anchor: foldingRange
    - title: documentLink
      anchor: documentLink
    - title: documentSymbol
      anchor: documentSymbol
    - title: diagnostic
      anchor: diagnostic
    - title: project
      anchor: projectContext
    - title: Embedding Contents
      anchor: embeddingContents
  - title: Advanced Concepts
    anchor: _advancedConcepts
    children:
    - title: Events
      anchor: events
    - title: Exports and Imports
      anchor: exportsImports
    - title: Result Ranges
      anchor: resultRanges
    - title: Meta Data
      anchor: metaData
    - title: Emitting Constraints
      anchor: emittingConstraints
  - title: Additional Information
    anchor: _additionalInformation
    children:
    - title: Tools
      anchor: tools
    - title: Open Questions
      anchor: openQuestions

================================================
FILE: _data/lsif-0-5-0-toc.yml
================================================
- title: Table of Contents
  reveal: _general
  children:
  - title: General
    anchor: _general
    children:
    - title: Introduction
      anchor: lsifIntro
    - title: Motivation
      anchor: lsifMotivation
    - title: Ranges
      anchor: ranges
    - title: Result Sets
      anchor: resultSet
  - title: Language Features
    anchor: _languageFeatures
    children:
    - title: definition
      anchor: definition
    - title: declaration
      anchor: declaration
    - title: hover
      anchor: hover
    - title: references
      anchor: references
    - title: implementation
      anchor: implementation
    - title: typeDefinition
      anchor: typeDefinition
    - title: foldingRange
      anchor: foldingRange
    - title: documentLink
      anchor: documentLink
    - title: documentSymbol
      anchor: documentSymbol
    - title: diagnostic
      anchor: diagnostic
    - title: project
      anchor: projectContext
    - title: Embedding Contents
      anchor: embeddingContents
  - title: Advanced Concepts
    anchor: _advancedConcepts
    children:
    - title: Events
      anchor: events
    - title: Exports and Imports
      anchor: exportsImports
    - title: Multiple Projects
      anchor: multiProjects
    - title: Package Managers
      anchor: packageManagers
    - title: Result Ranges
      anchor: resultRanges
    - title: Meta Data
      anchor: metaData
    - title: Emitting Constraints
      anchor: emittingConstraints
  - title: Additional Information
    anchor: _additionalInformation
    children:
    - title: Tools
      anchor: tools
    - title: Open Questions
      anchor: openQuestions

================================================
FILE: _data/lsif-0-6-0-toc.yml
================================================
- title: Table of Contents
  reveal: _general
  children:
  - title: General
    anchor: _general
    children:
    - title: Introduction
      anchor: lsifIntro
    - title: Motivation
      anchor: lsifMotivation
    - title: Ranges
      anchor: ranges
    - title: Result Sets
      anchor: resultSet
  - title: Language Features
    anchor: _languageFeatures
    children:
    - title: definition
      anchor: definition
    - title: declaration
      anchor: declaration
    - title: hover
      anchor: hover
    - title: references
      anchor: references
    - title: implementation
      anchor: implementation
    - title: typeDefinition
      anchor: typeDefinition
    - title: foldingRange
      anchor: foldingRange
    - title: documentLink
      anchor: documentLink
    - title: documentSymbol
      anchor: documentSymbol
    - title: diagnostic
      anchor: diagnostic
    - title: project
      anchor: projectContext
    - title: Embedding Contents
      anchor: embeddingContents
  - title: Advanced Concepts
    anchor: _advancedConcepts
    children:
    - title: Events
      anchor: events
    - title: Exports and Imports
      anchor: exportsImports
    - title: Multiple Projects
      anchor: multiProjects
    - title: Package Managers
      anchor: packageManagers
    - title: Result Ranges
      anchor: resultRanges
    - title: Meta Data
      anchor: metaData
    - title: Emitting Constraints
      anchor: emittingConstraints
  - title: Additional Information
    anchor: _additionalInformation
    children:
    - title: Tools
      anchor: tools
    - title: Open Questions
      anchor: openQuestions

================================================
FILE: _data/overviews.yml
================================================
- title: LSP
  url: /overviews/lsp/overview
- title: LSIF
  url: /overviews/lsif/overview

================================================
FILE: _data/specification-3-14-toc.yml
================================================
- title: Message Overview
  reveal: general
  children:
  - title: General
    anchor: general
    children:
    - title: initialize
      anchor: initialize
    - title: initialized
      anchor: initialized
    - title: shutdown
      anchor: shutdown
    - title: exit
      anchor: exit
    - title: $/cancelRequest
      anchor: cancelRequest
  - title: Window
    anchor: window
    children:
    - title: showMessage
      anchor: window_showMessage
    - title: showMessageRequest
      anchor: window_showMessageRequest
    - title: logMessage
      anchor: window_logMessage
  - title: Telemetry
    anchor: telemetry
    children:
    - title: event
      anchor: telemetry_event
  - title: Client
    anchor: client
    children:
    - title: registerCapability
      anchor: client_registerCapability
    - title: unregisterCapability
      anchor: client_unregisterCapability
  - title: Workspace
    anchor: workspace
    children:
    - title: workspaceFolders
      anchor: workspace_workspaceFolders
    - title: didChangeWorkspaceFolders
      anchor: workspace_didChangeWorkspaceFolders
    - title: didChangeConfiguration
      anchor: workspace_didChangeConfiguration
    - title: configuration
      anchor: workspace_configuration
    - title: didChangeWatchedFiles
      anchor: workspace_didChangeWatchedFiles
    - title: symbol
      anchor: workspace_symbol
    - title: executeCommand
      anchor: workspace_executeCommand
    - title: applyEdit
      anchor: workspace_applyEdit
  - title: Text Synchronization
    anchor: textSynchronization
    children:
    - title: didOpen
      anchor: textDocument_didOpen
    - title: didChange
      anchor: textDocument_didChange
    - title: willSave
      anchor: textDocument_willSave
    - title: willSaveWaitUntil
      anchor: textDocument_willSaveWaitUntil
    - title: didSave
      anchor: textDocument_didSave
    - title: didClose
      anchor: textDocument_didClose
  - title: Diagnostics
    anchor: diagnostics
    children:
    - title: publishDiagnostics
      anchor: textDocument_publishDiagnostics
  - title: Language Features
    anchor: languageFeatures
    children:
    - title: completion
      anchor: textDocument_completion
    - title: completion resolve
      anchor: completionItem_resolve
    - title: hover
      anchor: textDocument_hover
    - title: signatureHelp
      anchor: textDocument_signatureHelp
    - title: declaration
      anchor: textDocument_declaration
    - title: definition
      anchor: textDocument_definition
    - title: typeDefinition
      anchor: textDocument_typeDefinition
    - title: implementation
      anchor: textDocument_implementation
    - title: references
      anchor: textDocument_references
    - title: documentHighlight
      anchor: textDocument_documentHighlight
    - title: documentSymbol
      anchor: textDocument_documentSymbol
    - title: codeAction
      anchor: textDocument_codeAction
    - title: codeLens
      anchor: textDocument_codeLens
    - title: codeLens resolve
      anchor: codeLens_resolve
    - title: documentLink
      anchor: textDocument_documentLink
    - title: documentLink resolve
      anchor: documentLink_resolve
    - title: documentColor
      anchor: textDocument_documentColor
    - title: colorPresentation
      anchor: textDocument_colorPresentation
    - title: formatting
      anchor: textDocument_formatting
    - title: rangeFormatting
      anchor: textDocument_rangeFormatting
    - title: onTypeFormatting
      anchor: textDocument_onTypeFormatting
    - title: rename
      anchor: textDocument_rename
    - title: prepareRename
      anchor: textDocument_prepareRename
    - title: foldingRange
      anchor: textDocument_foldingRange
  - title: Change Log
    anchor: changeLog
    children:
    - title: 3.14.0
      anchor: version_3_14_0
    - title: 3.13.0
      anchor: version_3_13_0
    - title: 3.12.0
      anchor: version_3_12_0
    - title: 3.11.0
      anchor: version_3_11_0
    - title: 3.10.0
      anchor: version_3_10_0
    - title: 3.9.0
      anchor: version_3_9_0
    - title: 3.8.0
      anchor: version_3_8_0
    - title: 3.7.0
      anchor: version_3_7_0
    - title: 3.6.0
      anchor: version_3_6_0
    - title: 3.5.0
      anchor: version_3_5_0
    - title: 3.4.0
      anchor: version_3_4_0
    - title: 3.3.0
      anchor: version_3_3_0
    - title: 3.2.0
      anchor: version_3_2_0
    - title: 3.1.0
      anchor: version_3_1_0
    - title: 3.0
      anchor: version_3_0_0

================================================
FILE: _data/specification-3-15-toc.yml
================================================
- title: Message Overview
  reveal: baseProtocol
  children:
  - title: Base Protocol
    anchor: baseProtocol
    children:
    - title: Header Part
      anchor: headerPart
    - title: Content Part
      anchor: contentPart
    - title: Request Message
      anchor: requestMessage
    - title: Response Message
      anchor: responseMessage
    - title: Notification Message
      anchor: notificationMessage
    - title: $/cancelRequest
      anchor: cancelRequest
    - title: $/progress
      anchor: progress
  - title: Basic Structures
    anchor: dataTypes
    children:
    - title: URI
      anchor: uri
    - title: Text Documents
      anchor: textDocuments
    - title: Position
      anchor: position
    - title: Range
      anchor: range
    - title: Location
      anchor: location
    - title: Location Link
      anchor: locationLink
    - title: Diagnostic
      anchor: diagnostic
    - title: Command
      anchor: command
    - title: Text Edit
      anchor: textEdit
    - title: Text Document Edit
      anchor: textDocumentEdit
    - title: File Resource Changes
      anchor: resourceChanges
    - title: Workspace Edit
      anchor: workspaceEdit
    - title: Text Document Identifier
      anchor: textDocumentIdentifier
    - title: Text Document Item
      anchor: textDocumentItem
    - title: Versioned Text Document Identifier
      anchor: versionedTextDocumentIdentifier
    - title: Text Document Position Params
      anchor: textDocumentPositionParams
    - title: Document Filter
      anchor: documentFilter
    - title: Static Registration Options
      anchor: staticRegistrationOptions
    - title: Text Document Registration Options
      anchor: textDocumentRegistrationOptions
    - title: Markup Content
      anchor: markupContent
    - title: Work Done Progress
      anchor: workDoneProgress
    - title: Client Initiated Progress
      anchor: clientInitiatedProgress
    - title: Server Initiated Progress
      anchor: serverInitiatedProgress
    - title: Partial Results
      anchor: partialResults
    - title: Partial Result Params
      anchor: partialResultParams
  - title: General Messages
    anchor: general
    children:
    - title: initialize
      anchor: initialize
    - title: initialized
      anchor: initialized
    - title: shutdown
      anchor: shutdown
    - title: exit
      anchor: exit
  - title: Window
    anchor: window
    children:
    - title: showMessage
      anchor: window_showMessage
    - title: showMessageRequest
      anchor: window_showMessageRequest
    - title: logMessage
      anchor: window_logMessage
    - title: progress/create
      anchor: window_workDoneProgress_create
    - title: progress/cancel
      anchor: window_workDoneProgress_cancel
  - title: Telemetry
    anchor: telemetry
    children:
    - title: event
      anchor: telemetry_event
  - title: Client
    anchor: client
    children:
    - title: registerCapability
      anchor: client_registerCapability
    - title: unregisterCapability
      anchor: client_unregisterCapability
  - title: Workspace
    anchor: workspace
    children:
    - title: workspaceFolders
      anchor: workspace_workspaceFolders
    - title: didChangeWorkspaceFolders
      anchor: workspace_didChangeWorkspaceFolders
    - title: didChangeConfiguration
      anchor: workspace_didChangeConfiguration
    - title: configuration
      anchor: workspace_configuration
    - title: didChangeWatchedFiles
      anchor: workspace_didChangeWatchedFiles
    - title: symbol
      anchor: workspace_symbol
    - title: executeCommand
      anchor: workspace_executeCommand
    - title: applyEdit
      anchor: workspace_applyEdit
  - title: Text Synchronization
    anchor: textSynchronization
    children:
    - title: General Capabilities
      anchor: textDocument_synchronization
    - title: didOpen
      anchor: textDocument_didOpen
    - title: didChange
      anchor: textDocument_didChange
    - title: willSave
      anchor: textDocument_willSave
    - title: willSaveWaitUntil
      anchor: textDocument_willSaveWaitUntil
    - title: didSave
      anchor: textDocument_didSave
    - title: didClose
      anchor: textDocument_didClose
  - title: Diagnostics
    anchor: diagnostics
    children:
    - title: publishDiagnostics
      anchor: textDocument_publishDiagnostics
  - title: Language Features
    anchor: languageFeatures
    children:
    - title: completion
      anchor: textDocument_completion
    - title: completion resolve
      anchor: completionItem_resolve
    - title: hover
      anchor: textDocument_hover
    - title: signatureHelp
      anchor: textDocument_signatureHelp
    - title: declaration
      anchor: textDocument_declaration
    - title: definition
      anchor: textDocument_definition
    - title: typeDefinition
      anchor: textDocument_typeDefinition
    - title: implementation
      anchor: textDocument_implementation
    - title: references
      anchor: textDocument_references
    - title: documentHighlight
      anchor: textDocument_documentHighlight
    - title: documentSymbol
      anchor: textDocument_documentSymbol
    - title: codeAction
      anchor: textDocument_codeAction
    - title: codeLens
      anchor: textDocument_codeLens
    - title: codeLens resolve
      anchor: codeLens_resolve
    - title: documentLink
      anchor: textDocument_documentLink
    - title: documentLink resolve
      anchor: documentLink_resolve
    - title: documentColor
      anchor: textDocument_documentColor
    - title: colorPresentation
      anchor: textDocument_colorPresentation
    - title: formatting
      anchor: textDocument_formatting
    - title: rangeFormatting
      anchor: textDocument_rangeFormatting
    - title: onTypeFormatting
      anchor: textDocument_onTypeFormatting
    - title: rename
      anchor: textDocument_rename
    - title: prepareRename
      anchor: textDocument_prepareRename
    - title: foldingRange
      anchor: textDocument_foldingRange
    - title: selectionRange
      anchor: textDocument_selectionRange
  - title: Change Log
    anchor: changeLog
    children:
    - title: 3.15.0
      anchor: version_3_15_0
    - title: 3.14.0
      anchor: version_3_14_0
    - title: 3.13.0
      anchor: version_3_13_0
    - title: 3.12.0
      anchor: version_3_12_0
    - title: 3.11.0
      anchor: version_3_11_0
    - title: 3.10.0
      anchor: version_3_10_0
    - title: 3.9.0
      anchor: version_3_9_0
    - title: 3.8.0
      anchor: version_3_8_0
    - title: 3.7.0
      anchor: version_3_7_0
    - title: 3.6.0
      anchor: version_3_6_0
    - title: 3.5.0
      anchor: version_3_5_0
    - title: 3.4.0
      anchor: version_3_4_0
    - title: 3.3.0
      anchor: version_3_3_0
    - title: 3.2.0
      anchor: version_3_2_0
    - title: 3.1.0
      anchor: version_3_1_0
    - title: 3.0
      anchor: version_3_0_0

================================================
FILE: _data/specification-3-16-toc.yml
================================================
- title: Message Overview
  reveal: baseProtocol
  children:
  - title: Base Protocol
    anchor: baseProtocol
    children:
    - title: Header Part
      anchor: headerPart
    - title: Content Part
      anchor: contentPart
    - title: Request Message
      anchor: requestMessage
    - title: Response Message
      anchor: responseMessage
    - title: Notification Message
      anchor: notificationMessage
    - title: $/cancelRequest
      anchor: cancelRequest
    - title: $/progress
      anchor: progress
  - title: Basic Structures
    anchor: dataTypes
    children:
    - title: URI
      anchor: uri
    - title: Regular Expression
      anchor: regExp
    - title: Text Documents
      anchor: textDocuments
    - title: Position
      anchor: position
    - title: Range
      anchor: range
    - title: Location
      anchor: location
    - title: Location Link
      anchor: locationLink
    - title: Diagnostic
      anchor: diagnostic
    - title: Command
      anchor: command
    - title: Text Edit
      anchor: textEdit
    - title: Text Document Edit
      anchor: textDocumentEdit
    - title: File Resource Changes
      anchor: resourceChanges
    - title: Workspace Edit
      anchor: workspaceEdit
    - title: Text Document Identifier
      anchor: textDocumentIdentifier
    - title: Text Document Item
      anchor: textDocumentItem
    - title: Versioned Text Document Identifier
      anchor: versionedTextDocumentIdentifier
    - title: Text Document Position Params
      anchor: textDocumentPositionParams
    - title: Document Filter
      anchor: documentFilter
    - title: Static Registration Options
      anchor: staticRegistrationOptions
    - title: Text Document Registration Options
      anchor: textDocumentRegistrationOptions
    - title: Markup Content
      anchor: markupContent
    - title: Work Done Progress
      anchor: workDoneProgress
    - title: Client Initiated Progress
      anchor: clientInitiatedProgress
    - title: Server Initiated Progress
      anchor: serverInitiatedProgress
    - title: Partial Results
      anchor: partialResults
    - title: Partial Result Params
      anchor: partialResultParams
    - title: Trace Value
      anchor: traceValue
  - title: General Messages
    anchor: general
    children:
    - title: initialize
      anchor: initialize
    - title: initialized
      anchor: initialized
    - title: shutdown
      anchor: shutdown
    - title: exit
      anchor: exit
    - title: logTrace
      anchor: logTrace
    - title: setTrace
      anchor: setTrace
  - title: Window
    anchor: window
    children:
    - title: showMessage
      anchor: window_showMessage
    - title: showMessageRequest
      anchor: window_showMessageRequest
    - title: showDocument
      anchor: window_showDocument
    - title: logMessage
      anchor: window_logMessage
    - title: progress/create
      anchor: window_workDoneProgress_create
    - title: progress/cancel
      anchor: window_workDoneProgress_cancel
  - title: Telemetry
    anchor: telemetry
    children:
    - title: event
      anchor: telemetry_event
  - title: Client
    anchor: client
    children:
    - title: registerCapability
      anchor: client_registerCapability
    - title: unregisterCapability
      anchor: client_unregisterCapability
  - title: Workspace
    anchor: workspace
    children:
    - title: workspaceFolders
      anchor: workspace_workspaceFolders
    - title: didChangeWorkspaceFolders
      anchor: workspace_didChangeWorkspaceFolders
    - title: didChangeConfiguration
      anchor: workspace_didChangeConfiguration
    - title: configuration
      anchor: workspace_configuration
    - title: didChangeWatchedFiles
      anchor: workspace_didChangeWatchedFiles
    - title: symbol
      anchor: workspace_symbol
    - title: executeCommand
      anchor: workspace_executeCommand
    - title: applyEdit
      anchor: workspace_applyEdit
    - title: file operations events
      anchor: workspace_willCreateFiles
  - title: Text Synchronization
    anchor: textSynchronization
    children:
    - title: General Capabilities
      anchor: textDocument_synchronization
    - title: didOpen
      anchor: textDocument_didOpen
    - title: didChange
      anchor: textDocument_didChange
    - title: willSave
      anchor: textDocument_willSave
    - title: willSaveWaitUntil
      anchor: textDocument_willSaveWaitUntil
    - title: didSave
      anchor: textDocument_didSave
    - title: didClose
      anchor: textDocument_didClose
  - title: Diagnostics
    anchor: diagnostics
    children:
    - title: publishDiagnostics
      anchor: textDocument_publishDiagnostics
  - title: Language Features
    anchor: languageFeatures
    children:
    - title: completion
      anchor: textDocument_completion
    - title: completion resolve
      anchor: completionItem_resolve
    - title: hover
      anchor: textDocument_hover
    - title: signatureHelp
      anchor: textDocument_signatureHelp
    - title: declaration
      anchor: textDocument_declaration
    - title: definition
      anchor: textDocument_definition
    - title: typeDefinition
      anchor: textDocument_typeDefinition
    - title: implementation
      anchor: textDocument_implementation
    - title: references
      anchor: textDocument_references
    - title: documentHighlight
      anchor: textDocument_documentHighlight
    - title: documentSymbol
      anchor: textDocument_documentSymbol
    - title: codeAction
      anchor: textDocument_codeAction
    - title: codeAction resolve
      anchor: codeAction_resolve
    - title: codeLens
      anchor: textDocument_codeLens
    - title: codeLens resolve
      anchor: codeLens_resolve
    - title: codeLens refresh
      anchor: codeLens_refresh
    - title: documentLink
      anchor: textDocument_documentLink
    - title: documentLink resolve
      anchor: documentLink_resolve
    - title: documentColor
      anchor: textDocument_documentColor
    - title: colorPresentation
      anchor: textDocument_colorPresentation
    - title: formatting
      anchor: textDocument_formatting
    - title: rangeFormatting
      anchor: textDocument_rangeFormatting
    - title: onTypeFormatting
      anchor: textDocument_onTypeFormatting
    - title: rename
      anchor: textDocument_rename
    - title: prepareRename
      anchor: textDocument_prepareRename
    - title: foldingRange
      anchor: textDocument_foldingRange
    - title: selectionRange
      anchor: textDocument_selectionRange
    - title: prepareCallHierarchy
      anchor: textDocument_prepareCallHierarchy
    - title: callHierarchy incoming
      anchor: callHierarchy_incomingCalls
    - title: callHierarchy outgoing
      anchor: callHierarchy_outgoingCalls
    - title: semantic tokens
      anchor: textDocument_semanticTokens
    - title: linkedEditingRange
      anchor: textDocument_linkedEditingRange
    - title: moniker
      anchor: textDocument_moniker
  - title: Change Log
    anchor: changeLog
    children:
    - title: 3.16.0
      anchor: version_3_16_0
    - title: 3.15.0
      anchor: version_3_15_0
    - title: 3.14.0
      anchor: version_3_14_0
    - title: 3.13.0
      anchor: version_3_13_0
    - title: 3.12.0
      anchor: version_3_12_0
    - title: 3.11.0
      anchor: version_3_11_0
    - title: 3.10.0
      anchor: version_3_10_0
    - title: 3.9.0
      anchor: version_3_9_0
    - title: 3.8.0
      anchor: version_3_8_0
    - title: 3.7.0
      anchor: version_3_7_0
    - title: 3.6.0
      anchor: version_3_6_0
    - title: 3.5.0
      anchor: version_3_5_0
    - title: 3.4.0
      anchor: version_3_4_0
    - title: 3.3.0
      anchor: version_3_3_0
    - title: 3.2.0
      anchor: version_3_2_0
    - title: 3.1.0
      anchor: version_3_1_0
    - title: 3.0
      anchor: version_3_0_0

================================================
FILE: _data/specification-3-17-toc.yml
================================================
- title: Message Overview
  reveal: baseProtocol
  children:
  - title: Base Protocol
    anchor: baseProtocol
    children:
    - title: Header Part
      anchor: headerPart
    - title: Content Part
      anchor: contentPart
    - title: Base Types
      anchor: baseTypes
    - title: Request Message
      anchor: requestMessage
    - title: Response Message
      anchor: responseMessage
    - title: Notification Message
      anchor: notificationMessage
    - title: Cancellation Support
      anchor: cancelRequest
    - title: Progress Support
      anchor: progress
  - title: Language Server Protocol
    anchor: languageServerProtocol
    children:
    - title: Overview
      anchor: languageServerProtocol
    - title: Capabilities
      anchor: capabilities
    - title: Message Ordering
      anchor: messageOrdering
    - title: Message Documentation
      anchor: messageDocumentation
  - title: Basic JSON Structures
    anchor: basicJsonStructures
    children:
    - title: URI
      anchor: uri
    - title: Regular Expression
      anchor: regExp
    - title: Enumerations
      anchor: enumerations
    - title: Text Documents
      anchor: textDocuments
    - title: Position
      anchor: position
    - title: Range
      anchor: range
    - title: Text Document Item
      anchor: textDocumentItem
    - title: Text Document Identifier
      anchor: textDocumentIdentifier
    - title: Versioned Text Document Identifier
      anchor: versionedTextDocumentIdentifier
    - title: Text Document Position Params
      anchor: textDocumentPositionParams
    - title: Document Filter
      anchor: documentFilter
    - title: Text Edit
      anchor: textEdit
    - title: Text Edit Array
      anchor: textEditArray
    - title: Text Document Edit
      anchor: textDocumentEdit
    - title: Location
      anchor: location
    - title: Location Link
      anchor: locationLink
    - title: Diagnostic
      anchor: diagnostic
    - title: Command
      anchor: command
    - title: Markup Content
      anchor: markupContent
    - title: File Resource Changes
      anchor: resourceChanges
    - title: Workspace Edit
      anchor: workspaceEdit
    - title: Work Done Progress
      anchor: workDoneProgress
    - title: Client Initiated Progress
      anchor: clientInitiatedProgress
    - title: Server Initiated Progress
      anchor: serverInitiatedProgress
    - title: Partial Results
      anchor: partialResults
    - title: Partial Result Params
      anchor: partialResultParams
    - title: Trace Value
      anchor: traceValue
  - title: Lifecycle Messages
    anchor: lifeCycleMessages
    children:
    - title: Overview
      anchor: lifeCycleMessages
    - title: Initialize
      anchor: initialize
    - title: Initialized
      anchor: initialized
    - title: Register Capability
      anchor: client_registerCapability
    - title: Unregister Capability
      anchor: client_unregisterCapability
    - title: Set Trace
      anchor: setTrace
    - title: Log Trace
      anchor: logTrace
    - title: Shutdown
      anchor: shutdown
    - title: Exit
      anchor: exit
  - title: Document Synchronization
    anchor: textSynchronization
    children:
    - title: Overview - Text Document
      anchor: textDocument_synchronization
    - title: Did Open Text Document
      anchor: textDocument_didOpen
    - title: Did Change Text Document
      anchor: textDocument_didChange
    - title: Will Save Text Document
      anchor: textDocument_willSave
    - title: Will Save Document Wait Until
      anchor: textDocument_willSaveWaitUntil
    - title: Did Save Text Document
      anchor: textDocument_didSave
    - title: Did Close Text Document
      anchor: textDocument_didClose
    - title: Rename a Text Document
      anchor: textDocument_didRename
    - title: Overview - Notebook Document
      anchor: notebookDocument_synchronization
    - title: Did Open Notebook Document
      anchor: notebookDocument_didOpen
    - title: Did Change Notebook Document
      anchor: notebookDocument_didChange
    - title: Did Save Notebook Document
      anchor: notebookDocument_didSave
    - title: Did Close Notebook Document
      anchor: notebookDocument_didClose
  - title: Language Features
    anchor: languageFeatures
    children:
    - title: Overview
      anchor: languageFeatures
    - title: Go to Declaration
      anchor: textDocument_declaration
    - title: Go to Definition
      anchor: textDocument_definition
    - title: Go to Type Definition
      anchor: textDocument_typeDefinition
    - title: Go to Implementation
      anchor: textDocument_implementation
    - title: Find References
      anchor: textDocument_references
    - title: Prepare Call Hierarchy
      anchor: textDocument_prepareCallHierarchy
    - title: Call Hierarchy Incoming Calls
      anchor: callHierarchy_incomingCalls
    - title: Call Hierarchy Outgoing Calls
      anchor: callHierarchy_outgoingCalls
    - title: Prepare Type Hierarchy
      anchor: textDocument_prepareTypeHierarchy
    - title: Type Hierarchy Super Types
      anchor: typeHierarchy_supertypes
    - title: Type Hierarchy Sub Types
      anchor: typeHierarchy_subtypes
    - title: Document Highlight
      anchor: textDocument_documentHighlight
    - title: Document Link
      anchor: textDocument_documentLink
    - title: Document Link Resolve
      anchor: documentLink_resolve
    - title: Hover
      anchor: textDocument_hover
    - title: Code Lens
      anchor: textDocument_codeLens
    - title: Code Lens Refresh
      anchor: codeLens_refresh
    - title: Folding Range
      anchor: textDocument_foldingRange
    - title: Selection Range
      anchor: textDocument_selectionRange
    - title: Document Symbols
      anchor: textDocument_documentSymbol
    - title: Semantic Tokens
      anchor: textDocument_semanticTokens
    - title: Inline Value
      anchor: textDocument_inlineValue
    - title: Inline Value Refresh
      anchor: workspace_inlineValue_refresh
    - title: Inlay Hint
      anchor: textDocument_inlayHint
    - title: Inlay Hint Resolve
      anchor: inlayHint_resolve
    - title: Inlay Hint Refresh
      anchor: workspace_inlayHint_refresh
    - title: Moniker
      anchor: textDocument_moniker
    - title: Completion Proposals
      anchor: textDocument_completion
    - title: Completion Item Resolve
      anchor: completionItem_resolve
    - title: Publish Diagnostics
      anchor: textDocument_publishDiagnostics
    - title: Pull Diagnostics
      anchor: textDocument_pullDiagnostics
    - title: Signature Help
      anchor: textDocument_signatureHelp
    - title: Code Action
      anchor: textDocument_codeAction
    - title: Code Action Resolve
      anchor: codeAction_resolve
    - title: Document Color
      anchor: textDocument_documentColor
    - title: Color Presentation
      anchor: textDocument_colorPresentation
    - title: Formatting
      anchor: textDocument_formatting
    - title: Range Formatting
      anchor: textDocument_rangeFormatting
    - title: On type Formatting
      anchor: textDocument_onTypeFormatting
    - title: Rename
      anchor: textDocument_rename
    - title: Prepare Rename
      anchor: textDocument_prepareRename
    - title: Linked Editing Range
      anchor: textDocument_linkedEditingRange
  - title: Workspace Features
    anchor: workspaceFeatures
    children:
    - title: Workspace Symbols
      anchor: workspace_symbol
    - title: Workspace Symbol Resolve
      anchor: workspace_symbolResolve
    - title: Get Configuration
      anchor: workspace_configuration
    - title: Did Change Configuration
      anchor: workspace_didChangeConfiguration
    - title: Workspace Folders
      anchor: workspace_workspaceFolders
    - title: Did Change Workspace Folders
      anchor: workspace_didChangeWorkspaceFolders
    - title: Will Create Files
      anchor: workspace_willCreateFiles
    - title: Did Create Files
      anchor: workspace_didCreateFiles
    - title: Will Rename Files
      anchor: workspace_willRenameFiles
    - title: Did Rename Files
      anchor: workspace_didRenameFiles
    - title: Will Delete Files
      anchor: workspace_willDeleteFiles
    - title: Did Delete Files
      anchor: workspace_didDeleteFiles
    - title: Did Change Watched Files
      anchor: workspace_didChangeWatchedFiles
    - title: Execute Command
      anchor: workspace_executeCommand
    - title: Apply Edit
      anchor: workspace_applyEdit
  - title: Window Features
    anchor: windowFeatures
    children:
    - title: Show Message Notification
      anchor: window_showMessage
    - title: Show Message Request
      anchor: window_showMessageRequest
    - title: Log Message
      anchor: window_logMessage
    - title: Show Document
      anchor: window_showDocument
    - title: Create Work Done Progress
      anchor: window_workDoneProgress_create
    - title: Cancel a Work Done Progress
      anchor: window_workDoneProgress_cancel
    - title: Sent Telemetry
      anchor: telemetry_event
  - title: Miscellaneous
    anchor: miscellaneous
    children:
    - title: Implementation Considerations
      anchor: implementationConsiderations
    - title: Meta Model
      anchor: metaModel
  - title: Change Log
    anchor: changeLog
    children:
    - title: 3.17.0
      anchor: version_3_17_0
    - title: 3.16.0
      anchor: version_3_16_0
    - title: 3.15.0
      anchor: version_3_15_0
    - title: 3.14.0
      anchor: version_3_14_0
    - title: 3.13.0
      anchor: version_3_13_0
    - title: 3.12.0
      anchor: version_3_12_0
    - title: 3.11.0
      anchor: version_3_11_0
    - title: 3.10.0
      anchor: version_3_10_0
    - title: 3.9.0
      anchor: version_3_9_0
    - title: 3.8.0
      anchor: version_3_8_0
    - title: 3.7.0
      anchor: version_3_7_0
    - title: 3.6.0
      anchor: version_3_6_0
    - title: 3.5.0
      anchor: version_3_5_0
    - title: 3.4.0
      anchor: version_3_4_0
    - title: 3.3.0
      anchor: version_3_3_0
    - title: 3.2.0
      anchor: version_3_2_0
    - title: 3.1.0
      anchor: version_3_1_0
    - title: 3.0
      anchor: version_3_0_0

================================================
FILE: _data/specification-3-18-toc.yml
================================================
- title: Message Overview
  reveal: baseProtocol
  children:
  - title: Base Protocol
    anchor: baseProtocol
    children:
    - title: Header Part
      anchor: headerPart
    - title: Content Part
      anchor: contentPart
    - title: Base Types
      anchor: baseTypes
    - title: Request Message
      anchor: requestMessage
    - title: Response Message
      anchor: responseMessage
    - title: Notification Message
      anchor: notificationMessage
    - title: Cancellation Support
      anchor: cancelRequest
    - title: Progress Support
      anchor: progress
  - title: Language Server Protocol
    anchor: languageServerProtocol
    children:
    - title: Overview
      anchor: languageServerProtocol
    - title: Capabilities
      anchor: capabilities
    - title: Message Ordering
      anchor: messageOrdering
    - title: Message Documentation
      anchor: messageDocumentation
  - title: Basic JSON Structures
    anchor: basicJsonStructures
    children:
    - title: URI
      anchor: uri
    - title: Regular Expression
      anchor: regExp
    - title: Enumerations
      anchor: enumerations
    - title: Text Documents
      anchor: textDocuments
    - title: Position
      anchor: position
    - title: Range
      anchor: range
    - title: Text Document Item
      anchor: textDocumentItem
    - title: Text Document Identifier
      anchor: textDocumentIdentifier
    - title: Versioned Text Document Identifier
      anchor: versionedTextDocumentIdentifier
    - title: Text Document Position Params
      anchor: textDocumentPositionParams
    - title: Patterns
      anchor: patterns
    - title: Document Filter
      anchor: documentFilter
    - title: String Value
      anchor: stringValue
    - title: Text Edit
      anchor: textEdit
    - title: Text Edit Array
      anchor: textEditArray
    - title: Text Document Edit
      anchor: textDocumentEdit
    - title: Location
      anchor: location
    - title: Location Link
      anchor: locationLink
    - title: Diagnostic
      anchor: diagnostic
    - title: Command
      anchor: command
    - title: Markup Content
      anchor: markupContent
    - title: File Resource Changes
      anchor: resourceChanges
    - title: Workspace Edit
      anchor: workspaceEdit
    - title: Work Done Progress
      anchor: workDoneProgress
    - title: Client Initiated Progress
      anchor: clientInitiatedProgress
    - title: Server Initiated Progress
      anchor: serverInitiatedProgress
    - title: Partial Results
      anchor: partialResults
    - title: Partial Result Params
      anchor: partialResultParams
    - title: Trace Value
      anchor: traceValue
  - title: Lifecycle Messages
    anchor: lifeCycleMessages
    children:
    - title: Overview
      anchor: lifeCycleMessages
    - title: Initialize
      anchor: initialize
    - title: Initialized
      anchor: initialized
    - title: Register Capability
      anchor: client_registerCapability
    - title: Unregister Capability
      anchor: client_unregisterCapability
    - title: Set Trace
      anchor: setTrace
    - title: Log Trace
      anchor: logTrace
    - title: Shutdown
      anchor: shutdown
    - title: Exit
      anchor: exit
  - title: Document Synchronization
    anchor: textSynchronization
    children:
    - title: Overview - Text Document
      anchor: textDocument_synchronization
    - title: Did Open Text Document
      anchor: textDocument_didOpen
    - title: Did Change Text Document
      anchor: textDocument_didChange
    - title: Will Save Text Document
      anchor: textDocument_willSave
    - title: Will Save Document Wait Until
      anchor: textDocument_willSaveWaitUntil
    - title: Did Save Text Document
      anchor: textDocument_didSave
    - title: Did Close Text Document
      anchor: textDocument_didClose
    - title: Rename a Text Document
      anchor: textDocument_didRename
    - title: Overview - Notebook Document
      anchor: notebookDocument_synchronization
    - title: Did Open Notebook Document
      anchor: notebookDocument_didOpen
    - title: Did Change Notebook Document
      anchor: notebookDocument_didChange
    - title: Did Save Notebook Document
      anchor: notebookDocument_didSave
    - title: Did Close Notebook Document
      anchor: notebookDocument_didClose
  - title: Language Features
    anchor: languageFeatures
    children:
    - title: Overview
      anchor: languageFeatures
    - title: Go to Declaration
      anchor: textDocument_declaration
    - title: Go to Definition
      anchor: textDocument_definition
    - title: Go to Type Definition
      anchor: textDocument_typeDefinition
    - title: Go to Implementation
      anchor: textDocument_implementation
    - title: Find References
      anchor: textDocument_references
    - title: Prepare Call Hierarchy
      anchor: textDocument_prepareCallHierarchy
    - title: Call Hierarchy Incoming Calls
      anchor: callHierarchy_incomingCalls
    - title: Call Hierarchy Outgoing Calls
      anchor: callHierarchy_outgoingCalls
    - title: Prepare Type Hierarchy
      anchor: textDocument_prepareTypeHierarchy
    - title: Type Hierarchy Super Types
      anchor: typeHierarchy_supertypes
    - title: Type Hierarchy Sub Types
      anchor: typeHierarchy_subtypes
    - title: Document Highlight
      anchor: textDocument_documentHighlight
    - title: Document Link
      anchor: textDocument_documentLink
    - title: Document Link Resolve
      anchor: documentLink_resolve
    - title: Hover
      anchor: textDocument_hover
    - title: Code Lens
      anchor: textDocument_codeLens
    - title: Code Lens Refresh
      anchor: codeLens_refresh
    - title: Folding Range
      anchor: textDocument_foldingRange
    - title: Folding Range Refresh
      anchor: workspace_foldingRange_refresh
    - title: Selection Range
      anchor: textDocument_selectionRange
    - title: Document Symbols
      anchor: textDocument_documentSymbol
    - title: Semantic Tokens
      anchor: textDocument_semanticTokens
    - title: Semantic Tokens Refresh
      anchor: semanticTokens_refreshRequest
    - title: Inline Value
      anchor: textDocument_inlineValue
    - title: Inline Value Refresh
      anchor: workspace_inlineValue_refresh
    - title: Inlay Hint
      anchor: textDocument_inlayHint
    - title: Inlay Hint Resolve
      anchor: inlayHint_resolve
    - title: Inlay Hint Refresh
      anchor: workspace_inlayHint_refresh
    - title: Moniker
      anchor: textDocument_moniker
    - title: Completion Proposals
      anchor: textDocument_completion
    - title: Completion Item Resolve
      anchor: completionItem_resolve
    - title: Publish Diagnostics
      anchor: textDocument_publishDiagnostics
    - title: Pull Diagnostics
      anchor: textDocument_pullDiagnostics
    - title: Diagnostics Refresh
      anchor: diagnostic_refresh
    - title: Signature Help
      anchor: textDocument_signatureHelp
    - title: Code Action
      anchor: textDocument_codeAction
    - title: Code Action Resolve
      anchor: codeAction_resolve
    - title: Document Color
      anchor: textDocument_documentColor
    - title: Color Presentation
      anchor: textDocument_colorPresentation
    - title: Formatting
      anchor: textDocument_formatting
    - title: Range Formatting
      anchor: textDocument_rangeFormatting
    - title: On type Formatting
      anchor: textDocument_onTypeFormatting
    - title: Rename
      anchor: textDocument_rename
    - title: Prepare Rename
      anchor: textDocument_prepareRename
    - title: Linked Editing Range
      anchor: textDocument_linkedEditingRange
  - title: Workspace Features
    anchor: workspaceFeatures
    children:
    - title: Workspace Symbols
      anchor: workspace_symbol
    - title: Workspace Symbol Resolve
      anchor: workspace_symbolResolve
    - title: Get Configuration
      anchor: workspace_configuration
    - title: Did Change Configuration
      anchor: workspace_didChangeConfiguration
    - title: Workspace Folders
      anchor: workspace_workspaceFolders
    - title: Did Change Workspace Folders
      anchor: workspace_didChangeWorkspaceFolders
    - title: Will Create Files
      anchor: workspace_willCreateFiles
    - title: Did Create Files
      anchor: workspace_didCreateFiles
    - title: Will Rename Files
      anchor: workspace_willRenameFiles
    - title: Did Rename Files
      anchor: workspace_didRenameFiles
    - title: Will Delete Files
      anchor: workspace_willDeleteFiles
    - title: Did Delete Files
      anchor: workspace_didDeleteFiles
    - title: Did Change Watched Files
      anchor: workspace_didChangeWatchedFiles
    - title: Execute Command
      anchor: workspace_executeCommand
    - title: Apply Edit
      anchor: workspace_applyEdit
    - title: Text Document Content
      anchor: workspace_textDocumentContent
  - title: Window Features
    anchor: windowFeatures
    children:
    - title: Show Message Notification
      anchor: window_showMessage
    - title: Show Message Request
      anchor: window_showMessageRequest
    - title: Log Message
      anchor: window_logMessage
    - title: Show Document
      anchor: window_showDocument
    - title: Create Work Done Progress
      anchor: window_workDoneProgress_create
    - title: Cancel a Work Done Progress
      anchor: window_workDoneProgress_cancel
    - title: Send Telemetry
      anchor: telemetry_event
  - title: Miscellaneous
    anchor: miscellaneous
    children:
    - title: Implementation Considerations
      anchor: implementationConsiderations
    - title: Meta Model
      anchor: metaModel
  - title: Change Log
    anchor: changeLog
    children:
    - title: 3.18.0
      anchor: version_3_18_0
    - title: 3.17.0
      anchor: version_3_17_0
    - title: 3.16.0
      anchor: version_3_16_0
    - title: 3.15.0
      anchor: version_3_15_0
    - title: 3.14.0
      anchor: version_3_14_0
    - title: 3.13.0
      anchor: version_3_13_0
    - title: 3.12.0
      anchor: version_3_12_0
    - title: 3.11.0
      anchor: version_3_11_0
    - title: 3.10.0
      anchor: version_3_10_0
    - title: 3.9.0
      anchor: version_3_9_0
    - title: 3.8.0
      anchor: version_3_8_0
    - title: 3.7.0
      anchor: version_3_7_0
    - title: 3.6.0
      anchor: version_3_6_0
    - title: 3.5.0
      anchor: version_3_5_0
    - title: 3.4.0
      anchor: version_3_4_0
    - title: 3.3.0
      anchor: version_3_3_0
    - title: 3.2.0
      anchor: version_3_2_0
    - title: 3.1.0
      anchor: version_3_1_0
    - title: 3.0
      anchor: version_3_0_0


================================================
FILE: _data/specifications.yml
================================================
- title: LSP
  anchor: lsp
  children:
  - title: 3.17 (Current)
    version: 3.17
    url: /specifications/lsp/3.17/specification
  - title: 3.18 (Upcoming)
    version: 3.18
    url: /specifications/lsp/3.18/specification
  - title: 3.16 (Previous)
    version: 3.16
    url: /specifications/specification-3-16
- title: LSIF
  anchor: lsif
  children:
  - title: 0.6.0 (Current)
    url: /specifications/lsif/0.6.0/specification
  - title: 0.5.0 (Previous)
    url: /specifications/lsif/0.5.0/specification
- title: Base Protocol
  anchor: base
  children:
  - title: 0.9 (Upcoming)
    version: 0.9
    url: /specifications/base/0.9/specification

================================================
FILE: _implementors/sdks.md
================================================
---
layout: implementors
title:  "SDKs for the LSP"
shortTitle: "SDKs"
author: Microsoft
index: 3
---

*If you are missing a SDK please create a pull request in GitHub against this markdown [document](https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_implementors/sdks.md)*

| Language | Maintainer | Repository |
|------|--------|----------|
| C# | [Inomata Kentaro](https://github.com/matarillo/) | [LanguageServerProtocol](https://github.com/matarillo/LanguageServerProtocol)|
| C# | [OmniSharp](http://www.omnisharp.net/) | [C#-LSP](https://github.com/OmniSharp/csharp-language-server-protocol)|
| C# | [Ken Domino](https://github.com/kaby76) | [LspTypes for C#](https://github.com/kaby76/lsp-types) |
| C# | [Draco language team](https://draco-lang.org/) | [Draco.Lsp](https://github.com/Draco-lang/Compiler) |
| C++ | [Kuafu](https://github.com/kuafuwang) | [LspCpp](https://github.com/kuafuwang/LspCpp)|
| C++17 | [otreblan](https://github.com/otreblan) | [libclsp](https://github.com/otreblan/libclsp) (WIP)|
| C++20 | [Leon Buckel](https://github.com/leon-bckl) | [lsp-framework](https://github.com/leon-bckl/lsp-framework) |
| Haskell | [Alan Zimmerman](https://github.com/alanz) | [Haskell-LSP](https://github.com/alanz/haskell-lsp)|
| Haskell | [Luke Lau](https://github.com/Bubba) | [lsp-test](https://github.com/Bubba/lsp-test)|
| Haxe | @nadako | [language-server-protocol-haxe](https://github.com/vshaxe/language-server-protocol-haxe)|
| Java | [Eclipse LSP4J committers](https://projects.eclipse.org/projects/technology.lsp4j/who) |  [lsp4j](https://github.com/eclipse/lsp4j) |
| Java | [lxtk.org](https://github.com/lxtk-org) | [LXTK](https://github.com/lxtk-org/lxtk) |
| Java | [Eclipse Xtext committers](https://projects.eclipse.org/projects/modeling.tmf.xtext/who) |  [xtext](https://github.com/eclipse/xtext) |
| node.js | MS | [vscode-languageserver-node](https://github.com/Microsoft/vscode-languageserver-node)  |
| Objective-C | [Christopher Atlan](https://twitter.com/catlan) | [LSPKit](https://github.com/catlan/LSPKit)|
| PHP | [Felix Becker](https://github.com/felixfbecker) | [php-language-server](https://github.com/felixfbecker/php-language-server)|
| Python | [Open Law Library](http://www.openlawlib.org/) | [pygls](https://github.com/openlawlibrary/pygls)|
| Python | [Yeger](https://github.com/yeger00) | [pylspclient](https://github.com/yeger00/pylspclient)|
| Python | [Microsoft](https://github.com/microsoft) | [multilspy](https://github.com/microsoft/monitors4codegen#4-multilspy)|
| Rascal | [UseTheSource](https://github.com/UseTheSource) | [rascal-language-servers](https://github.com/usethesource/rascal-language-servers) |
| Ruby | [Fumiaki MATSUSHIMA](https://github.com/mtsmfm) | [LanguageServer::Protocol](https://github.com/mtsmfm/language_server-protocol-ruby) |
| Rust | [Bruno Medeiros](https://github.com/bruno-medeiros) | [RustLSP](https://github.com/RustDT/RustLSP)|
| Rust | Bruno Medeiros and Markus Westerlind | [lsp-types](https://github.com/gluon-lang/lsp-types)
| Rust | [Eyal Kalderon](https://github.com/ebkalderon) | [tower-lsp](https://github.com/ebkalderon/tower-lsp)
| Swift | [Chime](https://github.com/chimehq) | [LanguageServerProtocol](https://github.com/chimehq/LanguageServerProtocol)|
| TypeScript | [TypeFox](https://www.typefox.io/) | [langium](https://github.com/langium/langium)|
| TypeScript | [Volar team](https://volarjs.dev) | [Volar.js](https://github.com/volarjs/volar.js)|
| TypeScript | [Volar team](https://volarjs.dev) | [Volar services](https://github.com/volarjs/services)|
| Go | [TobiasYin](https://github.com/TobiasYin/) | [go-lsp](https://github.com/TobiasYin/go-lsp/)|
{: .table .table-bordered .table-responsive}


================================================
FILE: _implementors/servers.md
================================================
---
layout: implementors
title:  "Language Servers"
shortTitle: "Language Servers"
author: Microsoft
index: 1
---

*If you are missing a server please create a pull request in GitHub against this markdown [document](https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_implementors/servers.md)*


| Language | Maintainer | Repository | Implementation Language |
|------|--------|----------|---------------|
| 1C Enterprise | [Contributors](https://github.com/1c-syntax/bsl-language-server/graphs/contributors) | [BSL Language Server](https://github.com/1c-syntax/bsl-language-server) | Java |
| ABAP | [Lars Hvam](https://github.com/larshp) | [abaplint](https://github.com/abaplint/abaplint) | TypeScript |
| ActionScript 2.0 | [Adam Vernon](https://github.com/admvx) |  [AS2 Language Support](https://github.com/admvx/as2-language-support) | TypeScript |
| Ada/SPARK | AdaCore |  [ada_language_server](https://github.com/AdaCore/ada_language_server) | Ada |
| [agda](https://wiki.portal.chalmers.se/agda/pmwiki.php) | [agda](https://github.com/agda) | [agda-language-server](https://github.com/agda/agda-language-server) | Haskell |
| [AML](https://a.ml/) | [AML](https://a.ml/) | [AML Language Server](https://github.com/aml-org/als) | ScalaJS |
| [Ansible](https://docs.ansible.com/ansible/latest/) | [Ansible](https://www.ansible.com/) | [Ansible Language Server](https://github.com/ansible/vscode-ansible) | TypeScript |
| Angular | [Angular team](https://github.com/angular/angular) & [ivanwonder](https://github.com/ivanwonder) | [Angular Language Server](https://github.com/angular/vscode-ng-language-service/tree/main/server) | TypeScript |
| Antlr | [Ken Domino](https://github.com/kaby76) | [Antlrvsix](https://github.com/kaby76/AntlrVSIX) | C# |
| [API Elements](http://api-elements.readthedocs.io/en/latest/) | [Vincenzo Chianese(@XVincentX)](https://github.com/XVincentX) | [vscode-apielements](https://github.com/XVincentX/vscode-apielements) | TypeScript |
| [APL](https://aplwiki.com/) | [Optima Systems](https://github.com/OptimaSystems/apl-language-server) | [APL Language Server](https://github.com/OptimaSystems/apl-language-server) | APL |
| Apache Camel | [Contributors](https://github.com/camel-tooling/camel-language-server/graphs/contributors) | [Apache Camel Language Server](https://github.com/camel-tooling/camel-language-server) | Java |
| [Apache Dispatcher Config](https://experienceleague.adobe.com/docs/experience-manager-dispatcher/using/configuring/dispatcher-configuration.html?lang=en) | [Darian Benam](https://github.com/BeardedFish) | [vscode-apache-dispatcher-config-language-support](https://github.com/BeardedFish/vscode-apache-dispatcher-config-language-support) | TypeScript |
| Apex | Salesforce |  [VS Code Apex extension](https://marketplace.visualstudio.com/items?itemName=salesforce.salesforcedx-vscode-apex) | TypeScript |
| [Astro](https://astro.build) | [Astro team](https://github.com/withastro) |  [withastro/language-tools](https://github.com/withastro/language-tools) | TypeScript |
| [Boriel Basic](https://zxbasic.readthedocs.io/) | [rtorralba](https://github.com/rtorralba) | [boriel-basic-lsp](https://github.com/boriel-basic/boriel-basic-lsp) | Boriel Basic |
| IBM High Level **Assembler** | [Broadcom](https://www.broadcom.com/) | [HLASM Language Support](https://github.com/eclipse/che-che4z-lsp-for-hlasm) | C++ |
| [IBM High Level **Assembler**](https://www.ibm.com/support/knowledgecenter/SSLTBW_2.2.0/com.ibm.zos.v2r2.e0zc100/hlasm.htm) | IBM |  [IBM Z Open Editor VS Code extension](https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor) | Java |
| [ASN.1](https://www.itu.int/en/ITU-T/asn1/Pages/introduction.aspx) | [Eclipse Titan](https://projects.eclipse.org/projects/tools.titan) | [Titan Language Server](https://gitlab.eclipse.org/eclipse/titan/titan.language-server) | Java |
| [AsyncAPI](https://www.asyncapi.com/) | [AML](https://a.ml/) | [AML Language Server](https://github.com/aml-org/als) | ScalaJS |
| AWK | [Stanislav Chernov](https://github.com/Beaglefoot) | [AWK Language Server](https://github.com/Beaglefoot/awk-language-server) | TypeScript |
| [B/ProB](https://prob.hhu.de/w/) | [STUPS](https://github.com/hhu-stups/prob-issues/issues) | [B-language-server](https://github.com/hhu-stups/b-language-server) | Kotlin/Prolog |
| [Bake](https://docs.docker.com/build/bake/reference/)| [Docker](https://github.com/docker) | [docker-language-server](https://github.com/docker/docker-language-server) | Go |
| [Ballerina](https://ballerina.io/) | [Ballerina.io](https://ballerina.io/) | [Ballerina Language Server](https://github.com/ballerina-platform/ballerina-lang/tree/master/language-server) | Java |
| Bash | [Mads Hartmann](https://github.com/mads-hartmann/) | [Bash Language Server](https://github.com/mads-hartmann/bash-language-server) | TypeScript |
| Batch | [RechInformatica](https://github.com/RechInformatica) | [rech-editor-batch](https://github.com/RechInformatica/rech-editor-batch/tree/master/src/lsp) | TypeScript |
| [Bazel](https://bazel.build/) | [cameron-martin](https://github.com/cameron-martin) | [bazel-lsp](https://github.com/cameron-martin/bazel-lsp) | Rust |
| [Bicep](https://github.com/azure/bicep) | MS | [Bicep](https://github.com/azure/bicep) | C# |
| [BitBake](https://docs.yoctoproject.org/bitbake/) | [The Yocto Project](https://github.com/yoctoproject) | [BitBake Language Server](https://github.com/yoctoproject/vscode-bitbake/tree/staging/server) | TypeScript |
| BrightScript/BrighterScript | [RokuCommunity](https://github.com/RokuCommunity) | [brighterscript](https://github.com/rokucommunity/brighterscript) | TypeScript |
| C# | [OmniSharp](http://www.omnisharp.net/) | [omnisharp-roslyn](https://github.com/OmniSharp/omnisharp-roslyn) | C# |
| C# | [Saulius Menkevičius](https://github.com/razzmatazz) | [csharp-ls](https://github.com/razzmatazz/csharp-language-server) | F# |
| C++ | MS |  [VS Code C++ extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) | C++ |
| [C++/clang](https://clangd.llvm.org/)| [LLVM Project](https://llvm.org/) | [clangd](https://github.com/llvm/llvm-project/tree/main/clang-tools-extra/clangd) | C++ |
| C/C++/Objective-C | [Jacob Dufault](https://github.com/jacobdufault), [MaskRay](https://github.com/MaskRay), [topisani](https://github.com/topisani) | [cquery](https://github.com/jacobdufault/cquery) | C++ |
| C/C++/Objective-C | [MaskRay](https://github.com/MaskRay) | [ccls](https://github.com/MaskRay/ccls) | C++ |
| [caddy](https://caddyserver.com/) | [caddyserver](https://github.com/caddyserver/) | [vscode-caddyfile](https://github.com/caddyserver/vscode-caddyfile/tree/master/packages/server) | TypeScript |
| [CDS](https://cap.cloud.sap/docs/cds/) | [SAP](https://www.sap.com/) | [@sap/cds-lsp](https://www.npmjs.com/package/@sap/cds-lsp) (no code repository available) | JavaScript |
| CSS/LESS/SASS | MS | [vscode-css-languageserver](https://github.com/Microsoft/vscode/tree/master/extensions/css-language-features/server) | TypeScript |
| [Ceylon](https://ceylon-lang.org/) | [John Vasileff](https://github.com/jvasileff) | [vscode-ceylon](https://github.com/jvasileff/vscode-ceylon) | Ceylon |
| [Clarity](https://docs.stacks.co/docs/write-smart-contracts/) | [Hiro](https://hiro.so) | [clarity-lsp](https://github.com/hirosystems/clarity-lsp) | TypeScript |
| [Clojure](https://clojure.org/) | [Eric Dallo](https://github.com/ericdallo) | [clojure-lsp](https://github.com/clojure-lsp/clojure-lsp) | Clojure |
| [CMake](https://cmake.org/) | [regen100](https://github.com/regen100) | [cmake-language-server](https://github.com/regen100/cmake-language-server) | Python |
| [CMake](https://cmake.org/) | [Decodetalkers](https://github.com/Decodetalkers) | [neocmakelsp](https://github.com/Decodetalkers/neocmakelsp) | Rust |
| [Common Lisp](https://common-lisp.net/)| [cxxxr](https://github.com/cxxxr) | [cl-lsp](https://github.com/cxxxr/cl-lsp) | TypeScript |
| [Compose](https://docs.docker.com/reference/compose-file/)| [Docker](https://github.com/docker) | [docker-language-server](https://github.com/docker/docker-language-server) | Go |
| [Coq](https://coq.inria.fr/) | [ejgallego](https://github.com/ejgallego) | [coq-lsp](https://github.com/ejgallego/coq-lsp) | OCaml |
| [Coq](https://coq.inria.fr/) | [coq-community](https://github.com/coq-community) | [vscoq](https://github.com/coq-community/vscoq) | OCaml |
| Cobol| [RechInformatica](https://github.com/RechInformatica) | [rech-editor-cobol](https://github.com/RechInformatica/rech-editor-cobol/tree/master/src/lsp) | TypeScript |
| IBM Enterprise **COBOL** for z/OS | [Broadcom](https://www.broadcom.com/) | [COBOL Language Support](https://github.com/eclipse/che-che4z-lsp-for-cobol) | Java |
| [IBM Enterprise **COBOL** for z/OS](https://www.ibm.com/support/knowledgecenter/SS6SG3_6.3.0/welcome.html) | IBM |  [IBM Z Open Editor VS Code extension](https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor) | Java |
| [IBM Enterprise **RPG ILE** for IBM i](https://www.ibm.com/docs/en/i/7.5?topic=rpg-ile-reference) | IBM |  [IBMi Languages](https://marketplace.visualstudio.com/items?itemName=barrettotte.ibmi-languages) | Java |
[ IBM Enterprise **CL ILE** for IBM i](https://www.ibm.com/docs/en/i/7.5?topic=concepts-cl-commands) | IBM |  [IBMi Languages](https://marketplace.visualstudio.com/items?itemName=barrettotte.ibmi-languages) | Java |
| [Chapel](https://www.chapel-lang.org) | [Chapel Team](https://www.chapel-lang.org) | [chapel-language-server](https://github.com/chapel-lang/chapel/tree/main/tools/chpl-language-server) | Python |
| [CodeQL](https://securitylab.github.com/tools/codeql) | [GitHub](https://github.com/github/codeql) | [codeql](https://github.com/github/codeql) | Java |
| [CoffeeScript](https://coffeescript.org/) | [phil294](https://github.com/phil294/) | [CoffeeSense](https://github.com/phil294/coffeesense/) | TypeScript
| [CWL](https://www.commonwl.org/) | [Rabix](https://github.com/rabix) | [Benten](https://github.com/rabix/benten) | Python |
| [Crystal](https://crystal-lang.org/)| [Elbaz Julien](https://github.com/elbywan) | [Crystalline](https://github.com/elbywan/crystalline) | Crystal |
| [Crystal](https://crystal-lang.org/)| [Ryan L. Bell](https://github.com/kofno) | [Scry](https://github.com/crystal-lang-tools/scry) | Crystal |
| [Cucumber/Gherkin](https://cucumber.io/)| [Cucumber core team](https://github.com/cucumber) | [Cucumber Language Server](https://github.com/cucumber/language-server) | TypeScript |
| [Cython](https://cython.org/) | [ktnrg45](https://github.com/ktnrg45) | [cyright](https://github.com/ktnrg45/cyright) | TypeScript |
| [D](https://dlang.org) | [Jan Jurzitza](https://github.com/WebFreak001) | [serve-d](https://github.com/Pure-D/serve-d) | D |
| [D](https://dlang.org) | [Laurent Tréguier](https://github.com/LaurentTreguier) | [D Language Server](https://github.com/d-language-server/dls) | D |
| [Dart](https://dart.dev/) | [Dart Team](https://dart.dev/) | [Dart SDK](https://github.com/dart-lang/sdk/blob/master/pkg/analysis_server/tool/lsp_spec/README.md) | Dart |
| [Data Pack](https://minecraft.wiki/w/Data_Pack) | [SPGoding](https://github.com/SPGoding) | [Data-pack Language Server](https://github.com/SPGoding/datapack-language-server) | TypeScript |
| Debian Packaging files | [The `debputy` maintainers](https://salsa.debian.org/debian/debputy) | [`debputy lsp server`](https://salsa.debian.org/debian/debputy) | Python |
| [Delphi](https://www.embarcadero.com/products/delphi) | [Embarcadero](https://www.embarcadero.com/) | Proprietary ([DelphiLSP](http://docwiki.embarcadero.com/RADStudio/en/Code_Insight_References)) | Delphi and C |
| [DenizenScript](https://denizenscript.com/) | [DenizenScript Team](https://github.com/DenizenScript/) | [DenizenVSCode](https://github.com/DenizenScript/DenizenVSCode) | C# |
| [devicetree](https://www.devicetree.org) | [Kyle Micallef Bonnici](https://github.com/kylebonnici) | [dts-lsp](https://github.com/kylebonnici/dts-lsp) | Typescript |
| [Deno](https://deno.land) (TypeScript/JavaScript) | [Deno Land](https://github.com/denoland) | [`deno lsp`](https://github.com/denoland/deno/tree/main/cli/lsp) | Rust |
| [Dockerfiles](https://docs.docker.com/engine/reference/builder/)| [Docker](https://github.com/docker) | [docker-language-server](https://github.com/docker/docker-language-server) | Go |
| [Dockerfiles](https://docs.docker.com/engine/reference/builder/)| [Remy Suen](https://github.com/rcjsuen) | [dockerfile-language-server](https://github.com/rcjsuen/dockerfile-language-server-nodejs) | TypeScript |
| [DreamMaker](https://secure.byond.com/) | [SpaceManiac](https://www.platymuus.com) | [DreamMaker Language Server](https://github.com/SpaceManiac/SpacemanDMM/tree/master/src/langserver) | Rust |
| [Egglog](https://github.com/egraphs-good/egglog) | [hatoo](https://github.com/hatoo) | [egglog-language-server](https://github.com/hatoo/egglog-language-server) | Rust |
| Emacs Lisp | [Jen-Chieh Shen](https://github.com/jcs090218) | [ellsp](https://github.com/elisp-lsp/ellsp) | Emacs Lisp |
| Erlang | [OTP](https://github.com/erlang), [Vlad Dumitrescu](https://github.com/vladdu) | [sourcer](https://github.com/erlang/sourcer) | Erlang |
| [Erlang](https://www.erlang.org) | [Roberto Aloi](https://github.com/robertoaloi) and [Contributors](https://github.com/erlang-ls/erlang_ls/graphs/contributors) | [erlang_ls](https://github.com/erlang-ls/erlang_ls) | Erlang |
| [Erlang](https://www.erlang.org) | [WhatsApp](https://github.com/whatsapp) | [ELP](https://github.com/whatsapp/erlang-language-platform) | Rust, Erlang |
| [Erg](https://erg-lang.org) | [Shunsuke Shibayama](https://github.com/mtshiba) | [els](https://github.com/erg-lang/erg/tree/main/crates/els) | Rust |
| [Elixir](https://elixir-lang.org/)| [Elixir LSP](https://github.com/elixir-lsp) | [elixir-ls](https://github.com/elixir-lsp/elixir-ls) | Elixir |
| [Elm](https://elm-lang.org/)| [Kolja Lampe](https://github.com/razzeee) | [elmLS](https://github.com/elm-tooling/elm-language-server) | Typescript |
| [Ember](https://emberjs.com/) | [Alex Kanunnikov](https://github.com/lifeart) and [contributors](https://github.com/lifeart/ember-language-server/graphs/contributors) | [Ember Language Server](https://github.com/lifeart/ember-language-server) | TypeScript |
| [Ember](https://ember-cli.com/) | [Ember community](https://github.com/emberwatch) | [ember language server](https://github.com/emberwatch/ember-language-server) | TypeScript |
| F# | [@georgewfraser](https://github.com/georgewfraser) | [F# Language Server](https://github.com/georgewfraser/fsharp-language-server) | F# |
| F# | [@Krzysztof-Cieslak](https://github.com/Krzysztof-Cieslak) & Contributors | [FsAutoComplete](https://github.com/fsharp/FsAutoComplete) | F# |
| [fish](https://fishshell.com/) | [Nick Donfris](https://github.com/ndonfris) | [fish-lsp](https://github.com/ndonfris/fish-lsp) | TypeScript |
| [fluent-bit](https://fluentbit.io/) | [Seonghyeon Cho](https://github.com/sh-cho) | [fluent-bit-lsp](https://github.com/sh-cho/fluent-bit-lsp) | Rust |
| Fortran | [Chris Hansen](https://github.com/hansec) | [fortran-language-server](https://github.com/hansec/fortran-language-server) | Python |
| [Fortran](https://fortran-lang.org/) | [Giannis Nikiteas](https://github.com/gnikit) | [fortls](https://github.com/gnikit/fortls) | Python |
| [Fuzion](https://flang.dev) | [Tokiwa Software GmbH](https://tokiwa.software) | [Fuzion Language Server](https://github.com/tokiwa-software/fuzion-lsp-server) | Java, Fuzion |
| GLSL | [Sven-Hendrik Haase (@svenstaro)](https://github.com/svenstaro) | [glsl-language-server](https://github.com/svenstaro/glsl-language-server) | C++ |
| GLSL for Minecraft | [@strum355](https://github.com/strum355) | [mcshader-lsp](https://github.com/strum355/mcshader-lsp) | Rust |
| Gauge | [Gauge](https://github.com/getgauge) | [Gauge Language Server](https://github.com/getgauge/gauge/) | Go |
| GDScript | [GodotEngine](https://github.com/godotengine) | [Godot](https://github.com/godotengine/godot) | C++ |
| [Gleam](https://gleam.run/) | [Gleam](https://github.com/gleam-lang/gleam) | [gleam](https://github.com/gleam-lang/gleam) | Rust |
| [Glimmer templates](https://typed-ember.gitbook.io/glint) | [Contributors](https://github.com/typed-ember/glint/graphs/contributors) | [Glint](https://github.com/typed-ember/glint) | TypeScript |
| Gluon | [Gluon](https://github.com/gluon-lang/gluon) | [Gluon Language Server](https://github.com/gluon-lang/gluon_language-server) | Rust |
| [GN](https://gn.googlesource.com/gn/) | [Google](https://github.com/google/gn-language-server/graphs/contributors) | [gn-language-server](https://github.com/google/gn-language-server) | Rust |
| Go | [Go Team](https://github.com/golang/tools) | [gopls](https://github.com/golang/tools/tree/master/gopls) | Go |
| Go | [Sourcegraph](https://sourcegraph.com/) | [sourcegraph-go](https://github.com/sourcegraph/go-langserver) | Go |
| [GraphQL](http://graphql.org/) | [GraphQL Foundation](https://foundation.graphql.org/) | [Official GraphQL Language Server](https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-server) |  TypeScript |
| [GraphQL](http://graphql.org/) | [Mayank Agarwal (@Mayank1791989)](https://github.com/Mayank1791989) | [GQL Language Server](https://github.com/Mayank1791989/gql-language-server) | JavaScript |
| [Graphviz](https://graphviz.org/)/DOT | [Niklas Mollenhauer](https://github.com/nikeee) | [dot-language-server](https://github.com/nikeee/dot-language-server) | TypeScript |
| [Grain](https://grain-lang.org/) | [Grain Team](https://github.com/grain-lang/grain) | [grain](https://github.com/grain-lang/grain) | ReasonML |
| Groovy | [Palantir](https://github.com/palantir) | [groovy-language-server](https://github.com/palantir/groovy-language-server/) | Java |
| [Groovy](http://groovy-lang.org/) | [Prominic.NET](https://moonshine-ide.com/) | [Groovy Language Server](https://github.com/prominic/groovy-language-server) | Java |
| [Groovy](http://groovy-lang.org/) | [VsCode Groovy Lint](https://marketplace.visualstudio.com/items?itemName=NicolasVuillamy.vscode-groovy-lint) | [VsCode Groovy Lint Language Server](https://github.com/nvuillam/vscode-groovy-lint/tree/master/server) | TypeScript |
| HTML | MS | [vscode-html-languageserver](https://github.com/Microsoft/vscode/tree/master/extensions/html-language-features/server) | TypeScript |
| HTML | [Loris Cro](https://github.com/kristoff-it) | [SuperHTML](https://github.com/kristoff-it/superhtml) | Zig |
| Haskell| [Alan Zimmerman](https://github.com/alanz) | [Haskell Language Server (HLS)](https://github.com/haskell/haskell-language-server) | Haskell |
| [Haxe](https://haxe.org/) | [Haxe Foundation](https://github.com/HaxeFoundation/) | [Haxe Language Server](https://github.com/vshaxe/haxe-language-server) | Haxe |
| [Helm (Kubernetes)](https://helm.sh/) | [qvalentin](https://github.com/qvalentin/) | [helm-ls](https://github.com/mrjosh/helm-ls) | Go |
| HLSL | [Tim Jones](https://github.com/tgjones) | [HLSL Tools](https://github.com/tgjones/HlslTools/tree/master/src/ShaderTools.LanguageServer) | C# |
| [ink!](https://use.ink/) | [David Semakula](https://github.com/davidsemakula) | [ink! Language Server](https://github.com/ink-analyzer/ink-analyzer/tree/master/crates/lsp-server) | Rust |
| [Isabelle](https://www.cl.cam.ac.uk/research/hvg/Isabelle/) | [Makarius Wenzel](https://github.com/makarius) | [sources](https://isabelle.in.tum.de/repos/isabelle/file/tip/src/Tools/VSCode)  | Scala |
| [Idris2](https://github.com/idris-lang/Idris2) | [Idris community](https://github.com/idris-community) | [idris2-lsp](https://github.com/idris-community/idris2-lsp)  | Idris2 |
| Java (Eclipse)| Eclipse, [RedHat](http://developers.redhat.com/blog/2016/08/01/a-week-of-hacking-the-java-language-server/) |  [Eclipse JDT LS](https://github.com/eclipse/eclipse.jdt.ls/) | Java |
| Java | [@georgewfraser](https://github.com/georgewfraser) | [Java Compiler (javac) API-based Java support](https://github.com/georgewfraser/vscode-javac) | Java |
| JavaScript | [quick-lint-js](https://quick-lint-js.com/) | [quick-lint-js](https://github.com/quick-lint/quick-lint-js) | C++ |
| JavaScript Flow| [Facebook, Inc.](https://flow.org/) | [flow](https://github.com/facebook/flow) | OCaml, JavaScript |
| JavaScript Flow| [flowtype](https://github.com/flowtype/) | [flow-language-server](https://github.com/flowtype/flow-language-server)(deprecated) | JavaScript, Flow |
| JavaScript-Typescript | [Sourcegraph](https://sourcegraph.com/) | [javascript-typescript](https://github.com/sourcegraph/javascript-typescript-langserver) | TypeScript |
| JavaScript-Typescript | [Biome](https://github.com/biomejs) | [biome_lsp](https://github.com/biomejs/biome/tree/main/crates/biome_lsp) | Rust |
| [JCL](https://publibz.boulder.ibm.com/epubs/pdf/iea2b600.pdf) | [IBM](https://www.ibm.com/) |  [IBM Z Open Editor VS Code extension](https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor) | Java |
| [Jimmer DTO](https://github.com/babyfish-ct/jimmer) | [Enaium](https://github.com/Enaium/) | [jimmer-dto-lsp](https://github.com/Enaium/jimmer-dto-lsp) | Kotlin |
| JSON | MS | [vscode-json-languageserver](https://www.npmjs.com/package/vscode-json-languageserver) | TypeScript |
| [Jsonnet](https://jsonnet.org/) | [Grafana Labs](https://grafana.com/) | [jsonnet-language-server](https://github.com/grafana/jsonnet-language-server) | Go |
| [Julia](http://julialang.org/) | [Contributors](https://github.com/JuliaEditorSupport/LanguageServer.jl/graphs/contributors) | [Julia language server](https://github.com/JuliaEditorSupport/LanguageServer.jl) | Julia |
| [Kconfig](https://docs.kernel.org/kbuild/) | [Anakin Childerhose](https://github.com/anakin4747/) | [kconfig-language-server](https://github.com/anakin4747/kconfig-language-server) | Bash |
| [KDL](https://kdl.dev/) | [kdl-org](https://github.com/kdl-org/) | [vscode-kdl](https://github.com/kdl-org/vscode-kdl) | Typescript |
| [Kedro](https://kedro.org) | [Kedro Team](https://github.com/kedro-org/kedro) | [Kedro VSCode Language Server](https://github.com/kedro-org/vscode-kedro) | Python
| [Kerboscript (kOS)](https://ksp-kos.github.io/KOS/) | [John Chabot](https://github.com/jonnyboyC) | [kos-language-server](https://github.com/jonnyboyC/kos-language-server) | Typescript
| [KerML](https://github.com/Systems-Modeling/SysML-v2-Release) | [Sensmetry](https://sensmetry.com) | [SysML2 Tools](https://gitlab.com/sensmetry/public/sysml-2ls) | Typescript
| [Kotlin](https://kotlinlang.org) | [@fwcd](https://github.com/fwcd) | [kotlin-language-server](https://github.com/fwcd/kotlin-language-server) | Kotlin |
| [Kotlin](https://kotlinlang.org) | [JetBrains](https://www.jetbrains.com/) | [kotlin-lsp](https://github.com/Kotlin/kotlin-lsp) | Kotlin |
| [Language Server Robot](https://github.com/TypeCobolTeam/LanguageServerRobot) | [TypeCobolTeam](https://github.com/TypeCobolTeam) | [TypeCobol Language Server Robot](https://github.com/TypeCobolTeam/LanguageServerRobot/wiki) | C# |
| [LanguageTool](https://languagetool.org/)| [Adam Voss](https://github.com/adamvoss) | [languagetool](https://github.com/adamvoss/languagetool-languageserver) | Java |
| [LanguageTool](https://languagetool.org/)| [Julian Valentin](https://github.com/valentjn) | [ltex-ls](https://github.com/valentjn/ltex-ls) | Kotlin |
| [Lark](https://lark-parser.readthedocs.io/en/stable/)| [Dynova](https://github.com/orgs/dynovaio/people) | [lark-parser-language-server](https://github.com/dynovaio/lark-parser-language-server) | Python |
| [LaTeX](https://www.latex-project.org/)| [Eric Förster](https://github.com/efoerster) | [texlab](https://github.com/efoerster/texlab) | Rust |
| [Lean4](https://lean-lang.org/) | [leanprover](https://github.com/leanprover) | [Language Server](https://github.com/leanprover/lean4/tree/master/src/Lean/Server) | Lean4 |
| [Lox](https://craftinginterpreters.com/appendix-i.html) | [Ajeet D'Souza](https://github.com/ajeetdsouza) | [loxcraft](https://github.com/ajeetdsouza/loxcraft) | Rust |
| LPC | [John Chmura](https://github.com/jlchmura/) | [lpc-language-server](https://github.com/jlchmura/lpc-language-server) | TypeScript |
| [Lua](http://www.lua.org/)| [Kyle McLamb](https://github.com/Alloyed) | [lua-lsp](https://github.com/Alloyed/lua-lsp) | Lua |
| [Lua](http://www.lua.org/)| [最萌小汐](https://github.com/sumneko) | [lua-language-server](https://github.com/sumneko/lua-language-server) | Lua |
| [Lua](http://www.lua.org/)| [Tencent](https://github.com/Tencent/LuaHelper) | [LuaHelper](https://github.com/Tencent/LuaHelper) | Go |
| [Liquid](https://shopify.github.io/liquid/) | [Shopify](https://github.com/Shopify/theme-check) | [theme-check](https://github.com/Shopify/theme-check) | Ruby |
| [IBM **LALR** Parser Generator language](https://sourceforge.net/projects/lpg/)| [kuafuwang](https://github.com/kuafuwang) | [LPG-language-server](https://github.com/kuafuwang/LPG-language-server) | C++ |
| Make | [alexclewontin](https://github.com/alexclewontin) | [make-lsp-vscode](https://github.com/alexclewontin/make-lsp-vscode) | TypeScript |
| [Markdown](https://commonmark.org) | [Artem Pianykh](https://github.com/artempyanykh) | [Marksman](https://github.com/artempyanykh/marksman) | F# |
| [Markdown](https://commonmark.org) | [Nico Rehwaldt](https://github.com/nikku) | [Markmark](https://github.com/nikku/markmark) | JavaScript |
| [Markdown](https://commonmark.org) | MS | [vscode-markdown-languageserver](https://github.com/microsoft/vscode-markdown-languageserver) (vscode client [here](https://github.com/microsoft/vscode/tree/main/extensions/markdown-language-features)) | TypeScript |
| MATLAB | mathworks | [MATLAB-language-server](https://github.com/mathworks/MATLAB-language-server) | TypeScript, MATLAB |
| [MDX](https://mdxjs.com) | [MDX team](https://github.com/mdx-js) | [mdx-js/mdx-analyzer](https://github.com/mdx-js) | JavaScript |
| Motorola 68000 Assembly | [Graham Bates](https://github.com/grahambates) | [m68k-lsp](https://github.com/grahambates/m68k-lsp) | TypeScript |
| [MSBuild](https://github.com/Microsoft/msbuild) | [Adam Friedman](https://github.com/tintoy) | [msbuild-project-tools-vscode](https://github.com/tintoy/msbuild-project-tools-vscode) | TypeScript |
| [NASM/GO/GAS Assembly](https://en.wikipedia.org/wiki/Assembly_language) | [Contributors](https://github.com/bergercookie/asm-lsp/graphs/contributors) | [asm-lsp](https://github.com/bergercookie/asm-lsp) | Rust |
| Nginx | [pappasam](https://github.com/pappasam) | [nginx-language-server](https://github.com/pappasam/nginx-language-server) | Python |
| [Nim](https://nim-lang.org/) | [Peter Munch-Ellingsen](https://github.com/PMunch) | [nimlsp](https://github.com/PMunch/nimlsp) | Nim |
| [Nobl9 YAML](https://docs.nobl9.com/yaml-guide) | [Nobl9](https://www.nobl9.com/) | [nobl9-vscode](https://github.com/nobl9/nobl9-vscode/) | Go |
| OCaml/Reason | [OCaml Labs](http://ocamllabs.io) | [ocamllsp](https://github.com/ocaml/ocaml-lsp) | OCaml |
| [Odin](https://odin-lang.org) | [Daniel Gavin](https://github.com/DanielGavin/) | [ols](https://github.com/DanielGavin/ols) | Odin | 
| [OpenAPI](https://www.openapis.org/) | [AML](https://a.ml/) | [AML Language Server](https://github.com/aml-org/als) | ScalaJS |
| [OpenEdge ABL](https://www.progress.com/openedge) | [Riverside Software](https://riverside-software.fr) | [ABL Language Server](https://github.com/vscode-abl/vscode-abl) | Java |
| [openVALIDATION](http://openvalidation.io/) | [openVALIDATION](https://github.com/openvalidation) | [ov-language-server](https://github.com/openvalidation/ov-language-server) | TypeScript
| [Papyrus](https://www.creationkit.com/fallout4/index.php?title=Category:Papyrus) | [Joel Day](https://github.com/joelday) | [papyrus-lang](https://github.com/joelday/papyrus-lang) | C# |
| [PartiQL](https://partiql.org/) | [AWS](https://github.com/aws/language-servers) | [aws-lsp-partiql](https://github.com/aws/language-servers/tree/main/server/aws-lsp-partiql) | TypeScript |
| Perl | GRICHTER | [Perl::LanguageServer](https://metacpan.org/pod/Perl::LanguageServer) | Perl |
| Perl | [Marc Reisner](https://github.com/FractalBoy) | [PLS](https://github.com/FractalBoy/perl-language-server)| Perl |
| Perl | [Brian Scannell](https://github.com/bscan) | [Perl Navigator](https://github.com/bscan/PerlNavigator)| Perl |
| Pest | [Pest Maintainers](https://github.com/orgs/pest-parser/teams/pest-ide-tools) | [Pest IDE Tools](https://github.com/pest-parser/pest-ide-tools) | Rust |
| Crane **PHP** | [HvyIndustries](https://github.com/HvyIndustries) | [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=HvyIndustries.crane) | TypeScript |
| PHP | [Ben Mewburn](https://github.com/bmewburn) | [intelephense](https://github.com/bmewburn/vscode-intelephense) | TypeScript |
| PHP | [Felix Becker](https://github.com/felixfbecker) | [php-language-server](https://github.com/felixfbecker/php-language-server) | PHP |
| PHP | [Tom Gerrits](https://gitlab.com/Gert-dev) | [Serenata](https://gitlab.com/Serenata/Serenata) | PHP |
| PHP | [Tyson Andre](https://github.com/TysonAndre) | [Phan](https://github.com/phan/phan) | PHP |
| PHP | [Dan Leech](https://github.com/dantleech) | [phpactor](https://github.com/phpactor/phpactor) | PHP |
| PHPUnit | [Recca0120](https://github.com/recca0120) | [phpunit-language-server](https://github.com/recca0120/vscode-phpunit) | TypeScript |
| [IBM Enterprise **PL/I** for z/OS](https://www.ibm.com/support/knowledgecenter/SSY2V3_5.3.0/com.ibm.ent.pl1.zos.doc/single_template_nobrand.html) | IBM |  [IBM Z Open Editor VS Code extension](https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor) | Java |
| PL/SQL | [Ivan Dubashinskii](https://github.com/EwanDubashinski) | [PL/SQL language server](https://github.com/EwanDubashinski/plsqllang-server) | Java |
| [Polymer](https://www.polymer-project.org) | [Polymer Team](https://github.com/Polymer) | [polymer-editor-service](https://github.com/Polymer/polymer-editor-service) | TypeScript |
| [Pony](https://www.ponylang.io) | [Pony team](https://github.com/ponylang) | [ponyc](https://github.com/ponylang/ponyc) | Pony |
| PowerPC Assembly | [Noah Fields](https://github.com/OGoodness) | [PowerPC Support](https://github.com/OGoodness/VSCode-PowerPC-Syntax) | TypeScript |
| PowerShell | MS | [PowerShell Editor Services](https://github.com/PowerShell/PowerShellEditorServices) | C# |
| [PromQL](https://prometheus.io/docs/prometheus/latest/querying/basics/) | [Tobias Guggenmos](https://github.com/slrtbtfs) | [promql-langserver](https://github.com/prometheus-community/promql-langserver) | [Go](https://golang.org/) |
| [Protocol Buffers](https://protobuf.dev/) | [coder3101](https://github.com/coder3101) | [protols](https://github.com/coder3101/protols) | Rust |
| [Protocol Buffers](https://protobuf.dev/) | [lasorda](https://github.com/lasorda) | [protobuf-language-server](https://github.com/lasorda/protobuf-language-server) | Go |
| [Protocol Buffers](https://protobuf.dev/) | [Buf](https://github.com/bufbuild) | [Buf Language Server](https://github.com/bufbuild/buf) | Go |
| PureScript | [Nicholas Wolverson](https://github.com/nwolverson) | [purescript-language-server](https://github.com/nwolverson/purescript-language-server) | PureScript |
| Puppet| [Lingua Pupuli](https://github.com/lingua-pupuli) | [puppet language server](https://github.com/lingua-pupuli/puppet-editor-services) | Ruby |
| Python | [astral-sh](https://astral.sh/) | [ty](https://github.com/astral-sh/ty) | Rust |
| Python| [Fabio Zadrozny](https://github.com/fabioz/) | [PyDev on VSCode](http://www.pydev.org/vscode/index.html) | Java, Python |
| Python | MS | [Pyright](https://github.com/microsoft/pyright) | TypeScript |
| Python | Meta | [Pyrefly](https://github.com/facebook/pyrefly) | Rust |
| Python | [DetachHead](https://github.com/DetachHead) | [basedpyright](https://github.com/DetachHead/basedpyright) | TypeScript |
| Python| [Palantir Technologies](https://github.com/palantir) | [python-language-server](https://github.com/palantir/python-language-server) (unmaintained, use python-lsp-server instead) | Python |
| Python| [Spyder IDE team and the community](https://github.com/python-lsp) | [python-lsp-server](https://github.com/python-lsp/python-lsp-server) | Python |
| Python | MS | [python-language-server](https://github.com/Microsoft/python-language-server) (unmaintained, archived) | C# |
| Python | [Samuel Roeca](https://github.com/pappasam) | [jedi-language-server](https://github.com/pappasam/jedi-language-server) | Python |
| Python | [Shunsuke Shibayama](https://github.com/mtshiba) | [pylyzer](https://github.com/mtshiba/pylyzer) | Rust |
| Python | [zubanls](https://zubanls.com/) | [zuban](https://github.com/zubanls/zuban) | Rust |
| [Pony](https://www.ponylang.io/) | [Mahan Bakhshi](https://github.com/MahanBi) | [PonyLS](https://github.com/MahanBi/PonyLS) | Pony |
| Q# | [MS](https://github.com/microsoft/qsharp-compiler/graphs/contributors) | [Q# Language Server](https://github.com/microsoft/qsharp-compiler) | C# |
| QML | [Qt](https://www.qt.io/) | [qmlls](https://github.com/qt/qtdeclarative/tree/dev/tools/qmlls) | C++ |
| Query | [Riley Bruins](https://github.com/ribru17) | [ts_query_ls](https://github.com/ribru17/ts_query_ls) | Rust |
| [R](https://www.r-project.org/) | [REditorSupport](https://github.com/REditorSupport) | [R language server](https://github.com/REditorSupport/languageserver) | R |
| Racket | [Jay McCarthy](https://github.com/jeapostrophe) | [racket-langserver](https://github.com/jeapostrophe/racket-langserver) | Racket |
| [Rain](https://github.com/RainCmd/RainLanguage) | [渴望蓝天](https://github.com/RainCmd) | [RainLanguageServer](https://github.com/RainCmd/RainLanguageServer) | C# |
| Raku | [Brian Scannell](https://github.com/bscan) | [Raku Navigator](https://github.com/bscan/RakuNavigator) | TypeScript |
| RAML | [RAML Workgroup](http://raml.org/about/workgroup) | [raml-language-server](https://github.com/raml-org/raml-language-server) Work in Progress | |
| [Rascal](https://www.rascal-mpl.org/) | [UseTheSource](https://github.com/UseTheSource) | [util::LanguageServer](https://github.com/usethesource/rascal-language-servers) | Java & Rascal & Typescript |
| [RAML](https://raml.org/) | [AML](https://a.ml/) | [AML Language Server](https://github.com/aml-org/als) | ScalaJS |
| ReasonML| [Jared Forsyth](https://github.com/jaredly) | [reason-language-server](https://github.com/jaredly/reason-language-server) | OCaml |
| Red | [bitbegin](https://github.com/bitbegin) | [redlangserver](https://github.com/bitbegin/redlangserver) | Red |
| Rego | [Styra](https://www.styra.com) | [Regal](https://github.com/styrainc/regal) | Go, Rego |
| [REL](https://github.com/sscit/rel) | [Stefan Schlichthärle](https://www.github.com/sscit) | [rel-ls](https://github.com/sscit/rel) | C++ |
| [ReScript](https://rescript-lang.org) | [rescript-lang](https://github.com/rescript-lang) | [rescript-vscode](https://github.com/rescript-lang/rescript-vscode) | ReScript |
| [IBM TSO/E **REXX**](https://www.ibm.com/docs/en/zos/2.4.0?topic=tsoe-zos-rexx-reference) | IBM |  [IBM Z Open Editor VS Code extension](https://marketplace.visualstudio.com/items?itemName=IBM.zopeneditor) | Java |
| [Robot Framework](https://robotframework.org/) | [Daniel Biehl](https://github.com/d-biehl) | [RobotCode](https://github.com/d-biehl/robotcode) | Python |
| [Robot Framework](https://robotframework.org/) | [Tomi Turtiainen](https://github.com/tomi) | [VSCode RF language server](https://github.com/tomi/vscode-rf-language-server) | TypeScript |
| [Robot Framework](https://robotframework.org) | [Robocorp](https://robocorp.com) | [robotframework-lsp](https://github.com/robocorp/robotframework-lsp) | Python |
| Robots.txt | [Darian Benam](https://github.com/BeardedFish) | [vscode-robots-dot-txt-support](https://github.com/BeardedFish/vscode-robots-dot-txt-support) | TypeScript |
| Ruby | [Fred Snyder](https://github.com/castwide) | [solargraph](https://github.com/castwide/solargraph) | Ruby |
| Ruby | [Fumiaki MATSUSHIMA](https://github.com/mtsmfm) | [language_server-ruby](https://github.com/mtsmfm/language_server-ruby) | Ruby |
| Ruby | [Stripe](https://stripe.com) | [sorbet](https://github.com/sorbet/sorbet) | C++ |
| Ruby | [Rafał Łasocha](https://github.com/swistak35) | [orbacle](https://github.com/swistak35/orbacle) | Ruby |
| [Ruby](https://www.ruby-lang.org/en/) | [Kurt Werle](https://github.com/kwerle/) | [ruby_language_server](https://github.com/kwerle/ruby_language_server) | Ruby |
| Ruby | [Shopify](https://github.com/Shopify) | [Ruby LSP](https://github.com/Shopify/ruby-lsp) | Ruby |
| Rust | [Aleksey Kladov](https://github.com/matklad) | [Rust Analyzer](https://github.com/rust-analyzer/rust-analyzer) | Rust |
| [SageMath](https://www.sagemath.org/) | [SeanDictionary](https://github.com/SeanDictionary) | [Sage LSP](https://github.com/SeanDictionary/sage-lsp) | Python |
| Scala | [Iulian Dragos](https://github.com/dragos) | [dragos-vscode-scala](https://github.com/dragos/dragos-vscode-scala) | Scala |
| Scala | [Scalameta](https://github.com/scalameta) | [Metals](https://github.com/scalameta/metals) | Scala |
| Scheme| [ufo5260987423](https://github.com/ufo5260987423) | [scheme-langserver](https://github.com/ufo5260987423/scheme-langserver) | Chez Scheme|
| Shader | [Jen-Chieh Shen](https://github.com/jcs090218) | [shader-language-server](https://github.com/shader-ls/shader-language-server) | C# |
| [Slint](https://slint-ui.com) | Slint | [slint-lsp](https://github.com/slint-ui/slint/tree/HEAD/tools/lsp) | Rust |
| [Smalltalk/Pharo](https://pharo.org/) | [Benoît Verhaeghe](https://github.com/badetitou) | [Pharo Language Server](https://github.com/badetitou/Pharo-LanguageServer) | Pharo |
| [Smithy](https://smithy.io/2.0/index.html) | [Smithy](https://smithy.io/2.0/index.html) | [Smithy Language Server](https://github.com/smithy-lang/smithy-language-server) | Java |
| Snyk | [Snyk](https://snyk.io) | [Snyk Language Server](https://github.com/snyk/snyk-ls) | Snyk SCA / SAST / IaC findings |
| SPARQL | [Ioannis Nezis](https://github.com/IoannisNezis) | [Qlue-ls](https://github.com/IoannisNezis/Qlue-ls) | Rust |
| SPARQL | [Stardog Union](https://github.com/stardog-union) | [SPARQL Language Server](https://github.com/stardog-union/stardog-language-servers/tree/master/packages/sparql-language-server) | TypeScript |
| [Sphinx](https://www.sphinx-doc.org/en/master/) | [Alex Carney](https://github.com/alcarney) | [esbonio](https://github.com/swyddfa/esbonio) | Python |
| SQL | [Toshikazu Ohashi](https://github.com/lighttiger2505) | [sqls](https://github.com/lighttiger2505/sqls) | Go |
| Standard ML | [azdavis](https://azdavis.net) | [Millet](https://github.com/azdavis/millet) | Rust |
| [Stimulus](https://stimulus.hotwired.dev) | [Marco Roth](https://github.com/marcoroth) | [Stimulus LSP](https://github.com/marcoroth/stimulus-lsp) | TypeScript | 
| Stylable | [Wix.com](https://www.wix.com) | [stylable/language-service](https://github.com/wix/stylable/tree/master/packages/language-service) | TypeScript |
| [Svelte](https://svelte.dev/) | [Contributors](https://github.com/sveltejs/language-tools/graphs/contributors) | [svelte-language-server](https://github.com/sveltejs/language-tools) | TypeScript |
| Sway | [Fuel Labs](https://www.fuel.network/) | [sway-lsp](https://github.com/FuelLabs/sway/tree/master/sway-lsp) | Rust |
| Swift | [Apple](https://github.com/apple) | [SourceKit-LSP](https://github.com/apple/sourcekit-lsp) | Swift |
| [SysML v2](https://github.com/Systems-Modeling/SysML-v2-Release) | [Sensmetry](https://sensmetry.com) | [SysML2 Tools](https://gitlab.com/sensmetry/public/sysml-2ls) | Typescript
| Sysl | [ANZ Bank](https://github.com/anz-bank) | [Sysl LSP](https://github.com/anz-bank/sysl) | Go |
| systemd | [Paweł Sacawa](https://github.com/psacawa) | [systemd-language-server](https://github.com/psacawa/systemd-language-server) | Python |
| [Systemtap](https://sourceware.org/systemtap/) | [Red Hat](https://www.redhat.com/) | [Systemtap LSP](https://sourceware.org/git/?p=systemtap.git;a=tree;f=language-server) | C++ |
| SystemVerilog | [dalance](https://github.com/dalance) | [svls](https://github.com/dalance/svls) | Rust |
| SystemVerilog | [Sigasi](https://www.sigasi.com) | Proprietary ([Sigasi](https://insights.sigasi.com/vscode/)) | Java |
| SystemVerilog | [CHIPS Alliance](https://chipsalliance.org/) | [Verible](https://github.com/chipsalliance/verible) | C++ |
| SystemVerilog | [Hudson River Trading](https://www.hudson-trading.com/) | [slang-server](https://github.com/hudson-trading/slang-server) | C++ |
| T-SQL | MS | [VS Code SQL extension](https://github.com/Microsoft/vscode-mssql/tree/dev/src/languageservice ) | TypeScript, Binary |
| [Tads3](http://www.tads.org/tads3.htm) | [Tomas Öberg](https://github.com/toerob) | [tads3tools](https://github.com/toerob/vscode-tads3tools) | Tads3 |
| [Teal](https://github.com/teal-language/tl) | [Teal community](https://github.com/teal-language) | [teal-language-server](https://github.com/teal-language/teal-language-server) | Teal |
| [Terraform](https://www.terraform.io/) | [Julio Tain Sueiras](https://github.com/juliosueiras) | [terraform-lsp](https://github.com/juliosueiras/terraform-lsp) | Go |
| [Terraform](https://www.terraform.io/) | [HashiCorp](https://github.com/hashicorp) | [terraform-ls](https://github.com/hashicorp/terraform-ls) | Go |
| [Thrift](https://thrift.apache.org/) | [Pengfei Jiang](https://github.com/joyme123) | [thrift-ls](https://github.com/joyme123/thrift-ls) | Go |
| [Thrift](https://thrift.apache.org/) | [ocfbnj](https://github.com/ocfbnj) | [thrift-ls](https://github.com/ocfbnj/thrift-ls) | Rust |
| [Tibbo Basic](https://docs.tibbo.com/taiko/) | [Tibbo](https://tibbo.com) | [tibbo-basic](https://github.com/tibbotech/tibbo-basic) | Tibbo Basic |
| [TOML](https://toml.io/) | [Ferenc Tamás and contributors](https://github.com/tamasfe/taplo/graphs/contributors) | [Taplo](https://github.com/tamasfe/taplo) | Rust |
| [TOML](https://toml.io/) | [yassun7010](https://github.com/yassun7010) | [Tombi](https://github.com/tombi-toml/tombi) | Rust |
| [Trino SQL](https://trino.io) | [Rocket Boosters](https://gitlab.com/rocket-boosters) | [trinols](https://gitlab.com/rocket-boosters/trinols) | TypeScript |
| [TTCN-3](http://www.ttcn-3.org) | [Nokia](https://www.nokia.com) | [ntt](https://github.com/nokia/ntt) | Go |
| [TTCN-3](http://www.ttcn-3.org) | [Eclipse Titan](https://projects.eclipse.org/projects/tools.titan) | [Titan Language Server](https://gitlab.eclipse.org/eclipse/titan/titan.language-server) | Java |
| Turtle | [Stardog Union](https://github.com/stardog-union) | [Turtle Language Server](https://github.com/stardog-union/stardog-language-servers/tree/master/packages/turtle-language-server) | TypeScript |
| [Tailwind CSS](https://tailwindcss.com) | [Tailwind Labs](https://tailwindcss.com) | [Tailwind Intellisense](http://github.com/tailwindlabs/tailwindcss-intellisense) | TypeScript |
| [Twig](https://twig.symfony.com/) | [Stanislav Romanov](https://github.com/kaermorchen) | [Twig Language Server](https://github.com/kaermorchen/twig-language-server/tree/master/packages/language-server) | TypeScript |
| TypeCobol| [TypeCobol](https://github.com/TypeCobolTeam) | [TypeCobol language server](https://github.com/TypeCobolTeam/TypeCobol/tree/master/TypeCobol.LanguageServer) | C# |
| TypeScript|[TypeFox](http://typefox.io/)| [typescript-language-server](https://github.com/theia-ide/typescript-language-server) | TypeScript |
| [Typst](https://github.com/typst/typst/) | [Myriad-Dreamin](https://github.com/Myriad-Dreamin) | [tinymist](https://github.com/Myriad-Dreamin/tinymist) | Rust |
| [Typst](https://github.com/typst/typst/) | [nvarner](https://github.com/nvarner/) | [typst-lsp](https://github.com/nvarner/typst-lsp) | Rust |
| [V](https://vlang.io) | [Contributors](https://github.com/v-analyzer/v-analyzer/graphs/contributors) | [v-analyzer](https://github.com/v-analyzer/v-analyzer) | V
| Vala | [Ben Iofel](https://github.com/benwaffle), [Princeton Ferro](https://github.com/Prince781) | [vala-language-server](https://github.com/benwaffle/vala-language-server) | Vala |
| VDM-SL, VDM++, VDM-RT | [Nick Battle](https://github.com/nickbattle)| [VDMJ-LSP](https://github.com/nickbattle/vdmj/tree/master/lsp) | Java |
| [Veryl](https://github.com/dalance/veryl) | [dalance](https://github.com/dalance) | [Veryl Language Server](https://github.com/dalance/veryl/tree/master/crates/languageserver) | Rust |
| VHDL | [Olof Kraigher](https://github.com/kraigher) | [vhdl_ls](https://github.com/kraigher/rust_hdl) | Rust |
| VHDL | [Sigasi](https://www.sigasi.com) | Proprietary ([Sigasi](https://insights.sigasi.com/vscode/)) | Java |
| VHDL | [ViDE-Software](https://www.vide-software.at) | Proprietary ([VHDL for Professionals](https://marketplace.visualstudio.com/items?itemName=ViDE-Software.v4pvhdlforprofessionals)) | C# |
| Viml | [iamcco](https://github.com/iamcco) | [vim-language-server](https://github.com/iamcco/vim-language-server) | Typescript |
| Visualforce | Salesforce |  [VS Code Visualforce extension](https://marketplace.visualstudio.com/items?itemName=salesforce.salesforcedx-vscode-visualforce) | |
| [Vue](https://vuejs.org/) | [Pine Wu](https://github.com/octref) & [@HerringtonDarkholme](https://github.com/HerringtonDarkholme) | [vuejs/vetur](https://github.com/vuejs/vetur) | TypeScript |
| [Vue](https://vuejs.org) | [Vue team](https://github.com/vuejs) | [vuejs/language-tools](https://github.com/vuejs/language-tools) | TypeScript |
| [WebAssembly](https://webassembly.org/) | [Pig Fang](https://github.com/g-plane) | [wasm-language-tools](https://github.com/g-plane/wasm-language-tools) | Rust |
| [WebAssembly](https://webassembly.org/) | [Darin Morrison](https://github.com/darinmorrison) | [wasm-language-server](https://github.com/wasm-lsp/wasm-language-server) | Rust |
| [WebGPU Shading Language](https://gpuweb.github.io/gpuweb/wgsl/) | [WGSL-Analyzer Team](https://github.com/wgsl-analyzer) | [wgsl-analyzer](https://github.com/wgsl-analyzer/wgsl-analyzer) | Rust |
| [Wikitext](https://mediawiki.org/wiki/Wikitext) | [Bhsd](https://github.com/bhsd-harry) | [VSCode-WikiParser](https://github.com/bhsd-harry/vscode-extension-wikiparser) | TypeScript
| [Wing](https://www.winglang.io/) | [Contributors](https://github.com/winglang/wing/graphs/contributors) | [Wing](https://github.com/winglang/wing) | Typescript |
| [Wolfram Language](https://www.wolfram.com/language/) ([Mathematica](https://www.wolfram.com/mathematica)) | [kenkangxgwe](https://github.com/kenkangxgwe) | [lsp-wl](https://github.com/kenkangxgwe/lsp-wl) | Wolfram Language |
| [Wolfram Language](https://www.wolfram.com) | [Wolfram Research](https://github.com/WolframResearch) | [LSPServer](https://github.com/WolframResearch/lspserver) | Wolfram Language |
| [Wolfram Language](https://www.wolfram.com) | [markjet7](https://github.com/markjet7) | [wlsp](https://github.com/markjet7/wlsp) | Wolfram Language |
| WXML| [Qiming Zhao](https://github.com/chemzqm)| [wxml-languageserver](https://github.com/chemzqm/wxml-languageserver) | TypeScript |
| XML | IBM | [XML Language Server](https://github.com/microclimate-devops/xml-language-server) | Java |
| XML | [Red Hat Developers](https://github.com/redhat-developer) and [Angelo ZERR](https://github.com/angelozerr/) | [XML Language Server (LemMinX)](https://github.com/eclipse/lemminx) | Java |
| [Mini**YAML**](https://github.com/OpenRA/MiniYAML.tmbundle) | [Pavel Penev](https://github.com/penev92) | [ORAIDE](https://github.com/penev92/Oraide.LanguageServer) | C# |
| YAML (with JSON schemas)| [Adam Voss](https://github.com/adamvoss) | [vscode-yaml-languageservice](https://github.com/adamvoss/vscode-yaml-languageservice) | TypeScript |
| YAML| [Red Hat Developers](https://github.com/redhat-developer) | [yaml-language-server](https://github.com/redhat-developer/yaml-language-server) | TypeScript |
| [YARA](https://github.com/virusTotal/yara) | [Avast](https://github.com/avast) | [YARA Language Server](https://github.com/avast/yls) | Python |
| [YANG](https://tools.ietf.org/html/rfc7950)| [Yang tools](https://github.com/yang-tools) | [yang-lsp](https://github.com/yang-tools/yang-lsp) |  XTend |
| [Zig](https://ziglang.org/) | [zigtools](https://github.com/zigtools) | [zls](https://github.com/zigtools/zls) | [Zig](https://ziglang.org) |
| [Nix](https://nix.dev/) | [oxalica](https://github.com/oxalica/) | [nil](https://github.com/oxalica/nil) | Rust
| [Nix](https://nix.dev/) | [nix-community](https://github.com/nix-community/) | [nixd](https://github.com/nix-community/nixd) | C++
| * | [mattn](https://github.com/mattn) | [efm-langserver](https://github.com/mattn/efm-langserver) | [Go](https://golang.org/) |
| * | [iamcco](https://github.com/iamcco) | [diagnostic-languageserver](https://github.com/iamcco/diagnostic-languageserver) | TypeScript |
| * | [daquexian](https://github.com/daquexian) | [tagls](https://github.com/daquexian/tagls) | Python |
| * | [Sonar](https://github.com/SonarSource) | [SonarLint Language Server](https://github.com/SonarSource/sonarlint-language-server) | Java |
| * | [kbwo](https://github.com/kbwo) | [testing-language-server](https://github.com/kbwo/testing-language-server) | Rust |
| * | [GitHub](https://github.com/github/copilot-language-server-release) | [@github/copilot-language-server](https://www.npmjs.com/package/@github/copilot-language-server) (no code repository available, issues and feature requests can be done) | JavaScript |
| * | [Automattic](https://github.com/Automattic) | [harper](https://github.com/Automattic/harper) | Rust |
{: .table .table-bordered .table-responsive}


================================================
FILE: _implementors/tools.md
================================================
---
layout: implementors
title:  "Tools supporting the LSP"
shortTitle: "Supporting Tools"
author: Microsoft
index: 2
---

*If you are missing a development tool please create a pull request in GitHub against this markdown [document](https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_implementors/tools.md)*

| Editor/IDE | Maintainer | Repository |
|------|--------|----------|
| [Acme](https://en.wikipedia.org/wiki/Acme_(text_editor)) | [Fazlul Shahriar](https://github.com/fhs) | [acme-lsp](https://github.com/fhs/acme-lsp) |
| [Atom](https://atom.io/) | [GitHub](https://github.com/) | [atom-languageclient](https://www.npmjs.com/package/atom-languageclient) |
| [BBEdit](https://www.barebones.com/products/bbedit) | [Bare Bones Software, Inc.](https://www.barebones.com/) | Proprietary |
| [Brackets](http://brackets.io) | [Adobe](https://github.com/adobe) | [brackets](https://github.com/adobe/brackets) |
| [Coginiti Pro](https://www.coginiti.co/products/coginiti-pro/) | [Coginiti](https://www.coginiti.co) | |
| [Coginiti Premium](https://www.coginiti.co/products/coginiti-premium/) | [Coginiti](https://www.coginiti.co) | |
| [Cloud Studio](https://studio.dev.tencent.com/) | CODING |  |
| [Code::Blocks](https://www.codeblocks.org/) | [The Code::Blocks Team](https://www.codeblocks.org/) | svn://svn.code.sf.net/p/codeblocks/code/trunk |
| [CodeLite](https://codelite.org/) | [Eran Ifrah](https://github.com/eranif) | https://github.com/eranif/codelite |
| [CodeMirror](https://codemirror.net/6/) | [Furqan Software](https://github.com/furqansoftware) | [codemirror-languageserver](https://github.com/furqansoftware/codemirror-languageserver) |
| [CudaText](https://cudatext.github.io/) | [Alexey-T](https://github.com/Alexey-T) | [cuda_lsp](https://github.com/CudaText-addons/cuda_lsp) |
| [Eclipse Che](https://www.eclipse.org/che/) | Eclipse,Codenvy/TypeFox | [Che](https://github.com/eclipse/che/issues/1287) |
| Eclipse IDE | Eclipse,Red Hat | [Eclipse community](https://projects.eclipse.org/projects/technology.lsp4e/who), [Eclipse LSP4E](https://projects.eclipse.org/projects/technology.lsp4e) |
| Emacs | [Vibhav Pant](https://github.com/vibhavp) | [LSP Mode](https://github.com/emacs-lsp/lsp-mode/) |
| Emacs | [João Távora](https://github.com/joaotavora) | [Eglot](https://github.com/joaotavora/eglot) |
| Emacs | [Andy Stewart](https://github.com/manateelazycat/) | [lsp-bridge](https://github.com/manateelazycat/lsp-bridge/) | 
| Emacs | [zbelial](https://github.com/zbelial) | [lspce](https://github.com/zbelial/lspce) |
| Emacs | [JadeStrong](https://github.com/jadestrong) | [Lsp-Proxy](https://github.com/jadestrong/lsp-proxy) |
| [ecode](https://github.com/SpartanJ/ecode) | [Martín Lucas Golini](https://github.com/SpartanJ) | [ecode](https://github.com/SpartanJ/ecode) | 
| [Geany](https://www.geany.org) | [Jiří Techet](https://github.com/techee) | [geany-lsp](https://github.com/techee/geany-lsp) |
| [GNOME Builder](https://wiki.gnome.org/Apps/Builder) | [gnome.org](https://wiki.gnome.org/Apps/Builder/) | [language server client](https://git.gnome.org/browse/gnome-builder/tree/src/libide/lsp) |
| [GoLand](https://www.jetbrains.com/go) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [Helix Editor](https://helix-editor.com/) | [Blaž Hrastnik](https://github.com/archseer) | [helix](https://github.com/helix-editor/helix) |
| [IntelliJ-based IDEs](https://plugins.jetbrains.com/plugin/23257-lsp4ij?noRedirect=true) | [Red Hat](https://idetools.dev/) | [LSP4IJ](https://github.com/redhat-developer/lsp4ij) |
| [IntelliJ IDEA](https://www.jetbrains.com/idea/) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [JCIDE](https://www.javacardos.com/tools) | [Javacardos](https://www.javacardos.com) | [JCIDE](https://www.javacardos.com/javacardforum/viewtopic.php?f=5&t=2108&p=6175#p6175) |
| [JetBrains Fleet](https://www.jetbrains.com/fleet/) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [JupyterLab](https://github.com/jupyterlab/jupyterlab) | [krassowski](https://github.com/krassowski) | [jupyterlab-lsp](https://github.com/jupyter-lsp/jupyterlab-lsp) |
| [Kakoune](http://kakoune.org/) | [ul](https://github.com/ul) | [kak-lsp](https://github.com/ul/kak-lsp) |
| [Kate](https://kate-editor.org) | [Kate Team](https://kate-editor.org) | [kate](https://invent.kde.org/kde/kate) |
| [Lite XL](https://lite-xl.com) | [Lite XL Team](https://lite-xl.com) | [LSP Plugin](https://github.com/lite-xl/lite-xl-lsp) |
| [Micro](https://micro-editor.github.io/)| [zyedidia](https://github.com/zyedidia) | [micro-plugin-lsp](https://github.com/AndCake/micro-plugin-lsp) |
| [Moonshine IDE](https://moonshine-ide.com) | [Prominic.NET](https://github.com/prominic) | [Moonshine-IDE](https://github.com/prominic/Moonshine-IDE) |
| [MS Monaco Editor](https://github.com/Microsoft/monaco-editor) | Microsoft | [microsoft/monaco-editor](https://github.com/microsoft/monaco-editor/tree/main/monaco-lsp-client) |
| [MS Monaco Editor](https://github.com/Microsoft/monaco-editor) | [TypeFox](https://github.com/TypeFox) | [monaco-languageclient](https://www.npmjs.com/package/monaco-languageclient) |
| [MS Paint IDE](https://ms-paint-i.de/) | [RubbaBoy](https://github.com/RubbaBoy) | [MS Paint IDE](https://github.com/MSPaintIDE/MSPaintIDE) |
| [Multiple editors](https://github.com/Valloric/ycmd#known-ycmd-clients) | Ycmd team | [ycmd](https://github.com/Valloric/ycmd) | 
| [Neovim](https://neovim.io/) | [Neovim Team](https://github.com/neovim) | [native support since 0.5](https://neovim.io/doc/user/lsp/) |
| [Nova](https://nova.app) | [Panic Inc](http://panic.com) | Proprietary |
| [Oni](https://www.onivim.io) | [@oni_vim](https://twitter.com/oni_vim) | [Oni's Features](https://www.onivim.io/Features) |
| [OpenSumi](https://opensumi.com) | [opensumi](https://github.com/opensumi) | [opensumi](https://github.com/opensumi/core) |
| [PhpStorm](https://www.jetbrains.com/phpstorm) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [PyCharm](https://www.jetbrains.com/pycharm) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [Qt Creator](https://doc-snapshots.qt.io/qtcreator-9.0/creator-language-servers.html) | [The Qt Company](http://qt.io/) | [qtcreator](https://github.com/qt-creator/qt-creator)
| [RAD Studio](https://www.embarcadero.com/products/rad-studio) ([Delphi](https://www.embarcadero.com/products/delphi) and [C++Builder](https://www.embarcadero.com/products/cbuilder)) | [Embarcadero](https://www.embarcadero.com/) | Proprietary |
| [Rider](https://www.jetbrains.com/rider) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [Ruby](https://www.jetbrains.com/ruby) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [RJ TextEd](https://www.rj-texted.se/) | [Rickard Johansson](https://github.com/rickard67) | [lsp](https://github.com/rickard67/LSP-Pascal-Library) |
| [Spyder](http://spyder-ide.org) | [Spyder Dev Team](https://github.com/spyder-ide) | [spyder](https://github.com/spyder-ide/spyder) | 
| [Sublime Text](https://www.sublimetext.com/) | [Raoul Wols](https://github.com/rwols) | [lsp](https://github.com/sublimelsp/LSP) |
| [Textadept](https://orbitalquark.github.io/textadept) | [orbitalquark](https://github.com/orbitalquark) | [textadept-lsp](https://github.com/orbitalquark/textadept-lsp) |
| [Theia](https://github.com/theia-ide/theia) | [theia-ide](https://github.com/theia-ide) | [theia](https://github.com/theia-ide/theia) |
| vim8 and [neovim](https://neovim.io/) | [Junfeng Li](https://github.com/autozimu) | [LanguageClient-neovim](https://github.com/autozimu/LanguageClient-neovim) |
| vim8 and neovim | [Prabir Shrestha](https://github.com/prabirshrestha) | [vim-lsp](https://github.com/prabirshrestha/vim-lsp) |
| vim8 and neovim | [Qiming Zhao](https://github.com/chemzqm) | [coc.nvim](https://github.com/neoclide/coc.nvim) |
| vim8 and neovim | [Jayli](https://github.com/Jayli) | [vim-easycomplete](https://github.com/jayli/vim-easycomplete) |
| vim8 and neovim| [Jimmy Huang](https://github.com/JimmyHuang454) | [EasyCompleteYou](https://github.com/JimmyHuang454/EasyCompleteYou) |
| vim8 and neovim| [Nate Bosch](https://github.com/natebosch) | [vim-lsc](https://github.com/natebosch/vim-lsc) |
| vim8 and neovim| [w0rp](https://github.com/w0rp) | [ALE (Asynchronous Lint Engine) ](https://github.com/w0rp/ale) |
| vim9 | [Yegappan Lakshmanan](https://github.com/yegappan) | [Vim9 LSP plugin](https://github.com/yegappan/lsp) |
| vis | [Florian Fischer](https://gitlab.com/muhq) | [LSP client for the vis editor](https://gitlab.com/muhq/vis-lspc) |
| Visual Studio | [Adam Friedman](https://github.com/tintoy) | [LSP client in Visual Studio](https://github.com/tintoy/dotnet-language-client/tree/sample/visual-studio/samples/VisualStudioExtension) |
| Visual Studio | Microsoft | [LSP Preview](https://marketplace.visualstudio.com/items?itemName=vsext.LanguageServerClientPreview) |
| [Visual Studio Code](https://code.visualstudio.com) | Microsoft | [vscode](https://github.com/Microsoft/vscode/)  |
| [WebStorm](https://blog.jetbrains.com/webstorm) | [JetBrains](https://www.jetbrains.com) | Proprietary |
| [Zed](https://zed.dev) | [Zed Industries](https://zed.dev) | [zed](https://github.com/zed-industries/zed) |
{: .table .table-bordered .table-responsive}


================================================
FILE: _implementors/utilities.md
================================================
---
layout: implementors
title:  "Utilities for LSPs"
shortTitle: "Utilities"
author: Microsoft
index: 4
---

*If you are missing a utility please create a pull request in GitHub against this markdown [document](https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_implementors/utilities.md)*

| Tool                                                                                     | Maintainer                                       | Repository                                                                                 | Implementation Language |
|------------------------------------------------------------------------------------------|--------------------------------------------------|--------------------------------------------------------------------------------------------|-------------------------|
| [lasponya](https://www.npmjs.com/package/lasponya)                                       | [Tamás Balog](https://github.com/picimako)       | [Lasponya](https://github.com/picimako/lasponya)                                           | TypeScript              |
| [lsp-devtools](https://lsp-devtools.readthedocs.io/en/latest/)                           | [Alex Carney](https://github.com/alcarney)       | [lsp-devtools](https://github.com/swyddfa/lsp-devtools)                                    | Python                  |
| [monaco-languageserver-types](https://www.npmjs.com/package/monaco-languageserver-types) | [Remco Haszing](https://github.com/remcohaszing) | [monaco-languageserver-types](https://github.com/remcohaszing/monaco-languageserver-types) | TypeScript              |
{: .table .table-bordered .table-responsive}


================================================
FILE: _includes/cookie_notice.html
================================================
<div id='cookie-banner'></div>

================================================
FILE: _includes/footer.html
================================================
<footer class="footer">
    <script>
        function manageConsent() {
            if (WcpConsent.siteConsent.isConsentRequired) {
                WcpConsent.siteConsent.manageConsent();
            }
        }
    </script>

    <div class="container">
        <div class="row">
            <div class="col-sm-8">
                <ul class="links">
                    <li>
                        <span class="message">Hello from Seattle and Zürich.</span>
                    </li>
                    <li class="github-button-container">
                        <a class="github-button" href="https://github.com/Microsoft/language-server-protocol" data-icon="octicon-star" data-show-count="true" aria-label="Star Microsoft/language-server-protocol on GitHub">Star</a>
                    </li>
                    <li class="github-button-container">
                        <a class="github-button" href="https://github.com/Microsoft/language-server-protocol/subscription" aria-label="Watch Microsoft/language-server-protocol on GitHub">Watch</a>
                    </li>
                </ul>
            </div>
            <div class="col-sm-4">
                <ul class="links">
                    <li style="visibility: hidden;" >
                        <a id="footer-cookie-link" style="cursor: pointer; padding-right:20px" onclick="manageConsent()"
                            aria-label="Manage cookies">Manage cookies</a>
                    </li>
                    <li>
                        <div class="copyright">
                            <a id="footer-microsoft-link" class="logo" href="https://www.microsoft.com">
                                <picture>
                                    <source srcset="{{site.baseurl}}/img/microsoft-logo.png" media="(prefers-color-scheme: dark)"></source>
                                    <img src="{{site.baseurl}}/img/microsoft-logo-inverted.png" height="20" alt="Microsoft">
                                </picture>
                            </a>
                            <span>© {{ site.time | date: '%Y' }} Microsoft</span>
                        </div>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</footer>


================================================
FILE: _includes/head.html
================================================
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
    <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">


    <!-- link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous" -->
    <link rel="stylesheet" href="{{ "/css/bootswatch/cosmo/bootstrap.min.css" | prepend: site.baseurl }}">
    <link rel="stylesheet" href="{{ "/css/fontawesome-all.min.css" | prepend: site.baseurl }}">
    <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
    <link rel="shortcut icon" href="{{ "/img/favicon.svg" | prepend: site.baseurl }}">

    <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
    <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
</head>


================================================
FILE: _includes/js_files.html
================================================
<script>
  var baseurl = '{{ site.baseurl }}';
</script>

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
  integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

<!-- Microsoft EU cookie compliance library -->
<script src="https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62780441-30"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
  integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
  integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script src="{{ site.baseurl }}/js/page.js"></script>


<script type="text/javascript">
  var linkableTypes = new Map([
  {% for linkableGroup in site.data.linkableTypes -%}
  {% for linkableType in linkableGroup.children -%}
    ["{{ linkableType.type }}", "{{ linkableType.link }}"],
    {% endfor -%}
  {% endfor -%}
  ]);
</script>

{% comment %}
// Get the current LSP spec base url from the site data
{% endcomment %}
{% for spec in site.data.specifications %}
{%  for child in spec.children %}
{%   if spec.anchor == 'lsp' and child.version == page.lspVersion %}
{%    assign currentLspSpecification = child.url %}
{%   elsif spec.anchor == 'base' and child.version == page.baseVersion %}
{%    assign currentBaseSpecification = child.url %}
{%   endif %}
{%  endfor %}
{% endfor %}

<script type="text/javascript">
  function tryGetAssociatedLink(name) {
    var link = linkableTypes.get(name);

    if (!link) {
      return;
    }

    var anchor = document.createElement("a");
    var hrefUrl = link[0] === '/' ?
      `${baseurl}/specifications${link}` :
{% if currentLspSpecification %}
      `${baseurl}{{ currentLspSpecification }}/${link}`;
{% elsif currentBaseSpecification %}
    `${baseurl}{{ currentBaseSpecification }}/${link}`;
{% else %}
      link;
{% endif %}
    anchor.setAttribute("href", hrefUrl);
    anchor.textContent = name;
    return anchor;
  }

  var elements = document.querySelectorAll("code .nx, code.highlighter-rouge");
  for (var element of elements) {
    var typeName = element.textContent;
    var linkNode = tryGetAssociatedLink(typeName);

    if (linkNode) {
      element.replaceChildren(linkNode);
    }
  }
</script>


================================================
FILE: _includes/messages/3.17/exit.md
================================================
#### <a href="#exit" name="exit" class="anchor">Exit Notification (:arrow_right:)</a>

A notification to ask the server to exit its process.
The server should exit with `success` code 0 if the shutdown request has been received before; otherwise with `error` code 1.

_Notification_:
* method: 'exit'
* params: none


================================================
FILE: _includes/messages/3.17/initialized.md
================================================
#### <a href="#initialized" name="initialized" class="anchor">Initialized Notification (:arrow_right:)</a>

The initialized notification is sent from the client to the server after the client received the result of the `initialize` request but before the client is sending any other request or notification to the server. The server can use the `initialized` notification, for example, to dynamically register capabilities. The `initialized` notification may only be sent once.

_Notification_:
* method: 'initialized'
* params: `InitializedParams` defined as follows:

```typescript
interface InitializedParams {
}
```


================================================
FILE: _includes/messages/3.17/logMessage.md
================================================
#### <a href="#window_logMessage" name="window_logMessage" class="anchor">LogMessage Notification (:arrow_left:)</a>

The log message notification is sent from the server to the client to ask the client to log a particular message.

_Notification_:
* method: 'window/logMessage'
* params: `LogMessageParams` defined as follows:

<div class="anchorHolder"><a href="#logMessageParams" name="logMessageParams" class="linkableAnchor"></a></div>

```typescript
interface LogMessageParams {
	/**
	 * The message type. See {@link MessageType}
	 */
	type: MessageType;

	/**
	 * The actual message
	 */
	message: string;
}
```


================================================
FILE: _includes/messages/3.17/logTrace.md
================================================
#### <a href="#logTrace" name="logTrace" class="anchor">LogTrace Notification (:arrow_left:)</a>

A notification to log the trace of the server's execution.
The amount and content of these notifications depends on the current `trace` configuration.
If `trace` is `'off'`, the server should not send any `logTrace` notification.
If `trace` is `'messages'`, the server should not add the `'verbose'` field in the `LogTraceParams`.

`$/logTrace` should be used for systematic trace reporting. For single debugging messages, the server should send [`window/logMessage`](#window_logMessage) notifications.


_Notification_:
* method: '$/logTrace'
* params: `LogTraceParams` defined as follows:

```typescript
interface LogTraceParams {
	/**
	 * The message to be logged.
	 */
	message: string;
	/**
	 * Additional information that can be computed if the `trace` configuration
	 * is set to `'verbose'`
	 */
	verbose?: string;
}
```


================================================
FILE: _includes/messages/3.17/registerCapability.md
================================================
#### <a href="#client_registerCapability" name="client_registerCapability" class="anchor">Register Capability (:arrow_right_hook:)</a>

The `client/registerCapability` request is sent from the server to the client to register for a new capability on the client side. Not all clients need to support dynamic capability registration. A client opts in via the `dynamicRegistration` property on the specific client capabilities. A client can even provide dynamic registration for capability A but not for capability B (see `TextDocumentClientCapabilities` as an example).

Server must not register the same capability both statically through the initialize result and dynamically for the same document selector. If a server wants to support both static and dynamic registration it needs to check the client capability in the initialize request and only register the capability statically if the client doesn't support dynamic registration for that capability.

_Request_:
* method: 'client/registerCapability'
* params: `RegistrationParams`

Where `RegistrationParams` are defined as follows:

<div class="anchorHolder"><a href="#registration" name="registration" class="linkableAnchor"></a></div>

```typescript
/**
 * General parameters to register for a capability.
 */
export interface Registration {
	/**
	 * The id used to register the request. The id can be used to deregister
	 * the request again.
	 */
	id: string;

	/**
	 * The method / capability to register for.
	 */
	method: string;

	/**
	 * Options necessary for the registration.
	 */
	registerOptions?: LSPAny;
}
```

<div class="anchorHolder"><a href="#registrationParams" name="registrationParams" class="linkableAnchor"></a></div>

```typescript
export interface RegistrationParams {
	registrations: Registration[];
}
```

Since most of the registration options require to specify a document selector there is a base interface that can be used. See `TextDocumentRegistrationOptions`.

An example JSON-RPC message to register dynamically for the `textDocument/willSaveWaitUntil` feature on the client side is as follows (only details shown):

```json
{
	"method": "client/registerCapability",
	"params": {
		"registrations": [
			{
				"id": "79eee87c-c409-4664-8102-e03263673f6f",
				"method": "textDocument/willSaveWaitUntil",
				"registerOptions": {
					"documentSelector": [
						{ "language": "javascript" }
					]
				}
			}
		]
	}
}
```

This message is sent from the server to the client and after the client has successfully executed the request further `textDocument/willSaveWaitUntil` requests for JavaScript text documents are sent from the client to the server.

_Response_:
* result: void.
* error: code and message set in case an exception happens during the request.

`StaticRegistrationOptions` can be used to register a feature in the initialize result with a given server control ID to be able to un-register the feature later on.

<div class="anchorHolder"><a href="#staticRegistrationOptions" name="staticRegistrationOptions" class="linkableAnchor"></a></div>

```typescript
/**
 * Static registration options to be returned in the initialize request.
 */
export interface StaticRegistrationOptions {
	/**
	 * The id used to register the request. The id can be used to deregister
	 * the request again. See also Registration#id.
	 */
	id?: string;
}
```

`TextDocumentRegistrationOptions` can be used to dynamically register for requests for a set of text documents.

<div class="anchorHolder"><a href="#textDocumentRegistrationOptions" name="textDocumentRegistrationOptions" class="linkableAnchor"></a></div>

```typescript
/**
 * General text document registration options.
 */
export interface TextDocumentRegistrationOptions {
	/**
	 * A document selector to identify the scope of the registration. If set to
	 * null the document selector provided on the client side will be used.
	 */
	documentSelector: DocumentSelector | null;
}
```


================================================
FILE: _includes/messages/3.17/setTrace.md
================================================
#### <a href="#setTrace" name="setTrace" class="anchor">SetTrace Notification (:arrow_right:)</a>

A notification that should be used by the client to modify the trace setting of the server.

_Notification_:
* method: '$/setTrace'
* params: `SetTraceParams` defined as follows:

```typescript
interface SetTraceParams {
	/**
	 * The new value that should be assigned to the trace setting.
	 */
	value: TraceValue;
}
```


================================================
FILE: _includes/messages/3.17/showMessage.md
================================================
#### <a href="#window_showMessage" name="window_showMessage" class="anchor">ShowMessage Notification (:arrow_left:)</a>

The show message notification is sent from a server to a client to ask the client to display a particular message in the user interface.

_Notification_:
* method: 'window/showMessage'
* params: `ShowMessageParams` defined as follows:

```typescript
interface ShowMessageParams {
	/**
	 * The message type. See {@link MessageType}.
	 */
	type: MessageType;

	/**
	 * The actual message.
	 */
	message: string;
}
```

Where the type is defined as follows:

<div class="anchorHolder"><a href="#messageType" name="messageType" class="linkableAnchor"></a></div>

```typescript
export namespace MessageType {
	/**
	 * An error message.
	 */
	export const Error = 1;
	/**
	 * A warning message.
	 */
	export const Warning = 2;
	/**
	 * An information message.
	 */
	export const Info = 3;
	/**
	 * A log message.
	 */
	export const Log = 4;
	/**
	 * A debug message.
	 *
	 * @since 3.18.0
	 * @proposed
	 */
	export const Debug = 5;
}

export type MessageType = 1 | 2 | 3 | 4 | 5;
```


================================================
FILE: _includes/messages/3.17/showMessageRequest.md
================================================
#### <a href="#window_showMessageRequest" name="window_showMessageRequest" class="anchor">ShowMessage Request (:arrow_right_hook:)</a>

The show message request is sent from a server to a client to ask the client to display a particular message in the user interface. In addition to the show message notification the request allows to pass actions and to wait for an answer from the client.

_Client Capability_:
* property path (optional): `window.showMessage`
* property type: `ShowMessageRequestClientCapabilities` defined as follows:

```typescript
/**
 * Show message request client capabilities
 */
export interface ShowMessageRequestClientCapabilities {
	/**
	 * Capabilities specific to the `MessageActionItem` type.
	 */
	messageActionItem?: {
		/**
		 * Whether the client supports additional attributes which
		 * are preserved and sent back to the server in the
		 * request's response.
		 */
		additionalPropertiesSupport?: boolean;
	};
}
```

_Request_:
* method: 'window/showMessageRequest'
* params: `ShowMessageRequestParams` defined as follows:

<div class="anchorHolder"><a href="#showMessageRequestParams" name="showMessageRequestParams" class="linkableAnchor"></a></div>

```typescript
interface ShowMessageRequestParams {
	/**
	 * The message type. See {@link MessageType}
	 */
	type: MessageType;

	/**
	 * The actual message
	 */
	message: string;

	/**
	 * The message action items to present.
	 */
	actions?: MessageActionItem[];
}
```

Where the `MessageActionItem` is defined as follows:

<div class="anchorHolder"><a href="#messageActionItem" name="messageActionItem" class="linkableAnchor"></a></div>

```typescript
interface MessageActionItem {
	/**
	 * A short title like 'Retry', 'Open Log' etc.
	 */
	title: string;
}
```

_Response_:
* result: the selected `MessageActionItem` \| `null` if none got selected.
* error: code and message set in case an exception happens during showing a message.


================================================
FILE: _includes/messages/3.17/shutdown.md
================================================
#### <a href="#shutdown" name="shutdown" class="anchor">Shutdown Request (:leftwards_arrow_with_hook:)</a>

The shutdown request is sent from the client to the server. It asks the server to shut down, but to not exit (otherwise the response might not be delivered correctly to the client). There is a separate exit notification that asks the server to exit. Clients must not send any notifications other than `exit` or requests to a server to which they have sent a shutdown request. Clients should also wait with sending the `exit` notification until they have received a response from the `shutdown` request.

If a server receives requests after a shutdown request those requests should error with `InvalidRequest`.

_Request_:
* method: 'shutdown'
* params: none

_Response_:
* result: null
* error: code and message set in case an exception happens during shutdown request.


================================================
FILE: _includes/messages/3.17/telemetryEvent.md
================================================
#### <a href="#telemetry_event" name="telemetry_event" class="anchor">Telemetry Notification (:arrow_left:)</a>

The telemetry notification is sent from the server to the client to ask the client to log a telemetry event. The protocol doesn't specify the payload since no interpretation of the data happens in the protocol. Most clients even don't handle the event directly but forward them to the extensions owing the corresponding server issuing the event.

_Notification_:
* method: 'telemetry/event'
* params: 'object' \| 'array';


================================================
FILE: _includes/messages/3.17/unregisterCapability.md
================================================
#### <a href="#client_unregisterCapability" name="client_unregisterCapability" class="anchor">Unregister Capability (:arrow_right_hook:)</a>

The `client/unregisterCapability` request is sent from the server to the client to unregister a previously registered capability.

_Request_:
* method: 'client/unregisterCapability'
* params: `UnregistrationParams`

Where `UnregistrationParams` are defined as follows:

<div class="anchorHolder"><a href="#unregistration" name="unregistration" class="linkableAnchor"></a></div>

```typescript
/**
 * General parameters to unregister a capability.
 */
export interface Unregistration {
	/**
	 * The id used to unregister the request or notification. Usually an id
	 * provided during the register request.
	 */
	id: string;

	/**
	 * The method / capability to unregister for.
	 */
	method: string;
}
```

<div class="anchorHolder"><a href="#unregistrationParams" name="unregistrationParams" class="linkableAnchor"></a></div>

```typescript
export interface UnregistrationParams {
	// This should correctly be named `unregistrations`. However changing this
	// is a breaking change and needs to wait until we deliver a 4.x version
	// of the specification.
	unregisterations: Unregistration[];
}
```

An example JSON-RPC message to unregister the above registered `textDocument/willSaveWaitUntil` feature looks like this:

```json
{
	"method": "client/unregisterCapability",
	"params": {
		"unregisterations": [
			{
				"id": "79eee87c-c409-4664-8102-e03263673f6f",
				"method": "textDocument/willSaveWaitUntil"
			}
		]
	}
}
```
_Response_:
* result: void.
* error: code and message set in case an exception happens during the request.


================================================
FILE: _includes/messages/3.18/exit.md
================================================
#### <a href="#exit" name="exit" class="anchor">Exit Notification (:arrow_right:)</a>

A notification to ask the server to exit its process.
The server should exit with `success` code 0 if the shutdown request has been received before; otherwise with `error` code 1.

_Notification_:
* method: 'exit'
* params: none


================================================
FILE: _includes/messages/3.18/initialized.md
===========================
Download .txt
gitextract_erdqocs0/

├── .gitattributes
├── .gitignore
├── .vscode/
│   ├── settings.json
│   ├── spellright.dict
│   └── tasks.json
├── 404.html
├── Gemfile
├── License-code.txt
├── License.txt
├── SECURITY.md
├── ThirdPartyNotices.txt
├── _config.yml
├── _data/
│   ├── base-0-9-toc.yml
│   ├── linkableTypes.yml
│   ├── lsif-0-4-0-toc.yml
│   ├── lsif-0-5-0-toc.yml
│   ├── lsif-0-6-0-toc.yml
│   ├── overviews.yml
│   ├── specification-3-14-toc.yml
│   ├── specification-3-15-toc.yml
│   ├── specification-3-16-toc.yml
│   ├── specification-3-17-toc.yml
│   ├── specification-3-18-toc.yml
│   └── specifications.yml
├── _implementors/
│   ├── sdks.md
│   ├── servers.md
│   ├── tools.md
│   └── utilities.md
├── _includes/
│   ├── cookie_notice.html
│   ├── footer.html
│   ├── head.html
│   ├── js_files.html
│   ├── messages/
│   │   ├── 3.17/
│   │   │   ├── exit.md
│   │   │   ├── initialized.md
│   │   │   ├── logMessage.md
│   │   │   ├── logTrace.md
│   │   │   ├── registerCapability.md
│   │   │   ├── setTrace.md
│   │   │   ├── showMessage.md
│   │   │   ├── showMessageRequest.md
│   │   │   ├── shutdown.md
│   │   │   ├── telemetryEvent.md
│   │   │   └── unregisterCapability.md
│   │   └── 3.18/
│   │       ├── exit.md
│   │       ├── initialized.md
│   │       ├── logMessage.md
│   │       ├── logTrace.md
│   │       ├── registerCapability.md
│   │       ├── setTrace.md
│   │       ├── showMessage.md
│   │       ├── showMessageRequest.md
│   │       ├── shutdown.md
│   │       ├── telemetryEvent.md
│   │       └── unregisterCapability.md
│   ├── topnav.html
│   └── types/
│       ├── enumerations.md
│       ├── traceValue.md
│       └── uri.md
├── _layouts/
│   ├── default.html
│   ├── implementors.html
│   ├── overview.html
│   ├── redirect.html
│   ├── singlePage.html
│   └── specifications.html
├── _overviews/
│   ├── lsif/
│   │   └── overview.md
│   └── lsp/
│       └── overview.md
├── _specifications/
│   ├── base/
│   │   └── 0.9/
│   │       └── specification.md
│   ├── lsif/
│   │   ├── 0.4.0/
│   │   │   ├── implementation.md
│   │   │   └── specification.md
│   │   ├── 0.5.0/
│   │   │   ├── implementation.md
│   │   │   └── specification.md
│   │   └── 0.6.0/
│   │       ├── implementation.md
│   │       └── specification.md
│   ├── lsp/
│   │   ├── 3.17/
│   │   │   ├── general/
│   │   │   │   └── initialize.md
│   │   │   ├── language/
│   │   │   │   ├── callHierarchy.md
│   │   │   │   ├── codeAction.md
│   │   │   │   ├── codeLens.md
│   │   │   │   ├── colorPresentation.md
│   │   │   │   ├── completion.md
│   │   │   │   ├── declaration.md
│   │   │   │   ├── definition.md
│   │   │   │   ├── documentColor.md
│   │   │   │   ├── documentHighlight.md
│   │   │   │   ├── documentLink.md
│   │   │   │   ├── documentSymbol.md
│   │   │   │   ├── foldingRange.md
│   │   │   │   ├── formatting.md
│   │   │   │   ├── hover.md
│   │   │   │   ├── implementation.md
│   │   │   │   ├── inlayHint.md
│   │   │   │   ├── inlineValue.md
│   │   │   │   ├── linkedEditingRange.md
│   │   │   │   ├── moniker.md
│   │   │   │   ├── onTypeFormatting.md
│   │   │   │   ├── publishDiagnostics.md
│   │   │   │   ├── pullDiagnostics.md
│   │   │   │   ├── rangeFormatting.md
│   │   │   │   ├── references.md
│   │   │   │   ├── rename.md
│   │   │   │   ├── selectionRange.md
│   │   │   │   ├── semanticTokens.md
│   │   │   │   ├── signatureHelp.md
│   │   │   │   ├── typeDefinition.md
│   │   │   │   └── typeHierarchy.md
│   │   │   ├── metaModel/
│   │   │   │   ├── metaModel.json
│   │   │   │   ├── metaModel.schema.json
│   │   │   │   └── metaModel.ts
│   │   │   ├── notebookDocument/
│   │   │   │   └── notebook.md
│   │   │   ├── specification.md
│   │   │   ├── textDocument/
│   │   │   │   ├── didChange.md
│   │   │   │   ├── didClose.md
│   │   │   │   ├── didOpen.md
│   │   │   │   ├── didRename.md
│   │   │   │   ├── didSave.md
│   │   │   │   ├── willSave.md
│   │   │   │   └── willSaveWaitUntil.md
│   │   │   ├── types/
│   │   │   │   ├── command.md
│   │   │   │   ├── diagnostic.md
│   │   │   │   ├── documentFilter.md
│   │   │   │   ├── location.md
│   │   │   │   ├── locationLink.md
│   │   │   │   ├── markupContent.md
│   │   │   │   ├── partialResultParams.md
│   │   │   │   ├── partialResults.md
│   │   │   │   ├── position.md
│   │   │   │   ├── range.md
│   │   │   │   ├── regexp.md
│   │   │   │   ├── resourceChanges.md
│   │   │   │   ├── textDocumentEdit.md
│   │   │   │   ├── textDocumentIdentifier.md
│   │   │   │   ├── textDocumentItem.md
│   │   │   │   ├── textDocumentPositionParams.md
│   │   │   │   ├── textDocuments.md
│   │   │   │   ├── textEdit.md
│   │   │   │   ├── textEditArray.md
│   │   │   │   ├── versionedTextDocumentIdentifier.md
│   │   │   │   ├── workDoneProgress.md
│   │   │   │   └── workspaceEdit.md
│   │   │   ├── window/
│   │   │   │   ├── showDocument.md
│   │   │   │   ├── workDoneProgressCancel.md
│   │   │   │   └── workDoneProgressCreate.md
│   │   │   └── workspace/
│   │   │       ├── applyEdit.md
│   │   │       ├── configuration.md
│   │   │       ├── didChangeConfiguration.md
│   │   │       ├── didChangeWatchedFiles.md
│   │   │       ├── didChangeWorkspaceFolders.md
│   │   │       ├── didCreateFiles.md
│   │   │       ├── didDeleteFiles.md
│   │   │       ├── didRenameFiles.md
│   │   │       ├── executeCommand.md
│   │   │       ├── symbol.md
│   │   │       ├── willCreateFiles.md
│   │   │       ├── willDeleteFiles.md
│   │   │       ├── willRenameFiles.md
│   │   │       └── workspaceFolders.md
│   │   └── 3.18/
│   │       ├── general/
│   │       │   └── initialize.md
│   │       ├── language/
│   │       │   ├── callHierarchy.md
│   │       │   ├── codeAction.md
│   │       │   ├── codeLens.md
│   │       │   ├── colorPresentation.md
│   │       │   ├── completion.md
│   │       │   ├── declaration.md
│   │       │   ├── definition.md
│   │       │   ├── documentColor.md
│   │       │   ├── documentHighlight.md
│   │       │   ├── documentLink.md
│   │       │   ├── documentSymbol.md
│   │       │   ├── foldingRange.md
│   │       │   ├── formatting.md
│   │       │   ├── hover.md
│   │       │   ├── implementation.md
│   │       │   ├── inlayHint.md
│   │       │   ├── inlineCompletion.md
│   │       │   ├── inlineValue.md
│   │       │   ├── linkedEditingRange.md
│   │       │   ├── moniker.md
│   │       │   ├── onTypeFormatting.md
│   │       │   ├── publishDiagnostics.md
│   │       │   ├── pullDiagnostics.md
│   │       │   ├── rangeFormatting.md
│   │       │   ├── references.md
│   │       │   ├── rename.md
│   │       │   ├── selectionRange.md
│   │       │   ├── semanticTokens.md
│   │       │   ├── signatureHelp.md
│   │       │   ├── typeDefinition.md
│   │       │   └── typeHierarchy.md
│   │       ├── metaModel/
│   │       │   ├── metaModel.json
│   │       │   ├── metaModel.schema.json
│   │       │   └── metaModel.ts
│   │       ├── notebookDocument/
│   │       │   └── notebook.md
│   │       ├── specification.md
│   │       ├── textDocument/
│   │       │   ├── didChange.md
│   │       │   ├── didClose.md
│   │       │   ├── didOpen.md
│   │       │   ├── didRename.md
│   │       │   ├── didSave.md
│   │       │   ├── willSave.md
│   │       │   └── willSaveWaitUntil.md
│   │       ├── types/
│   │       │   ├── command.md
│   │       │   ├── diagnostic.md
│   │       │   ├── documentFilter.md
│   │       │   ├── location.md
│   │       │   ├── locationLink.md
│   │       │   ├── markupContent.md
│   │       │   ├── partialResultParams.md
│   │       │   ├── partialResults.md
│   │       │   ├── patterns.md
│   │       │   ├── position.md
│   │       │   ├── range.md
│   │       │   ├── regexp.md
│   │       │   ├── resourceChanges.md
│   │       │   ├── stringValue.md
│   │       │   ├── textDocumentEdit.md
│   │       │   ├── textDocumentIdentifier.md
│   │       │   ├── textDocumentItem.md
│   │       │   ├── textDocumentPositionParams.md
│   │       │   ├── textDocuments.md
│   │       │   ├── textEdit.md
│   │       │   ├── textEditArray.md
│   │       │   ├── versionedTextDocumentIdentifier.md
│   │       │   ├── workDoneProgress.md
│   │       │   └── workspaceEdit.md
│   │       ├── window/
│   │       │   ├── showDocument.md
│   │       │   ├── workDoneProgressCancel.md
│   │       │   └── workDoneProgressCreate.md
│   │       └── workspace/
│   │           ├── applyEdit.md
│   │           ├── configuration.md
│   │           ├── didChangeConfiguration.md
│   │           ├── didChangeWatchedFiles.md
│   │           ├── didChangeWorkspaceFolders.md
│   │           ├── didCreateFiles.md
│   │           ├── didDeleteFiles.md
│   │           ├── didRenameFiles.md
│   │           ├── executeCommand.md
│   │           ├── symbol.md
│   │           ├── textDocumentContent.md
│   │           ├── willCreateFiles.md
│   │           ├── willDeleteFiles.md
│   │           ├── willRenameFiles.md
│   │           └── workspaceFolders.md
│   ├── specification-3-14.md
│   ├── specification-3-15.md
│   └── specification-3-16.md
├── css/
│   └── main.scss
├── index.html
├── js/
│   └── page.js
└── resources/
    └── notes.md
Download .txt
SYMBOL INDEX (58 symbols across 3 files)

FILE: _specifications/lsp/3.17/metaModel/metaModel.ts
  type BaseTypes (line 6) | type BaseTypes = 'URI' | 'DocumentUri' | 'integer' | 'uinteger' | 'decim...
  type TypeKind (line 8) | type TypeKind = 'base' | 'reference' | 'array' | 'map' | 'and' | 'or' | ...
  type MessageDirection (line 13) | type MessageDirection = 'clientToServer' | 'serverToClient' | 'both';
  type BaseType (line 18) | type BaseType = {
  type ReferenceType (line 28) | type ReferenceType = {
  type ArrayType (line 36) | type ArrayType = {
  type MapKeyType (line 47) | type MapKeyType = { kind: 'base'; name: 'URI' | 'DocumentUri' | 'string'...
  type MapType (line 53) | type MapType = {
  type AndType (line 63) | type AndType = {
  type OrType (line 72) | type OrType = {
  type TupleType (line 81) | type TupleType = {
  type StructureLiteralType (line 90) | type StructureLiteralType =  {
  type StringLiteralType (line 99) | type StringLiteralType = {
  type IntegerLiteralType (line 104) | type IntegerLiteralType = {
  type BooleanLiteralType (line 117) | type BooleanLiteralType = {
  type Type (line 122) | type Type = BaseType | ReferenceType | ArrayType | MapType | AndType | O...
  type Request (line 127) | type Request = {
  type Notification (line 199) | type Notification = {
  type Property (line 255) | type Property = {
  type Structure (line 299) | type Structure = {
  type StructureLiteral (line 351) | type StructureLiteral = {
  type TypeAlias (line 386) | type TypeAlias = {
  type EnumerationEntry (line 424) | type EnumerationEntry = {
  type EnumerationType (line 459) | type EnumerationType = { kind: 'base'; name: 'string' | 'integer' | 'uin...
  type Enumeration (line 464) | type Enumeration = {
  type MetaData (line 511) | type MetaData = {
  type MetaModel (line 521) | type MetaModel = {

FILE: _specifications/lsp/3.18/metaModel/metaModel.ts
  type BaseTypes (line 6) | type BaseTypes = 'URI' | 'DocumentUri' | 'integer' | 'uinteger' | 'decim...
  type TypeKind (line 8) | type TypeKind = 'base' | 'reference' | 'array' | 'map' | 'and' | 'or' | ...
  type MessageDirection (line 13) | type MessageDirection = 'clientToServer' | 'serverToClient' | 'both';
  type BaseType (line 18) | type BaseType = {
  type ReferenceType (line 28) | type ReferenceType = {
  type ArrayType (line 36) | type ArrayType = {
  type MapKeyType (line 47) | type MapKeyType = { kind: 'base'; name: 'URI' | 'DocumentUri' | 'string'...
  type MapType (line 53) | type MapType = {
  type AndType (line 63) | type AndType = {
  type OrType (line 72) | type OrType = {
  type TupleType (line 81) | type TupleType = {
  type StructureLiteralType (line 90) | type StructureLiteralType =  {
  type StringLiteralType (line 99) | type StringLiteralType = {
  type IntegerLiteralType (line 104) | type IntegerLiteralType = {
  type BooleanLiteralType (line 117) | type BooleanLiteralType = {
  type Type (line 122) | type Type = BaseType | ReferenceType | ArrayType | MapType | AndType | O...
  type Request (line 127) | type Request = {
  type Notification (line 210) | type Notification = {
  type Property (line 277) | type Property = {
  type Structure (line 327) | type Structure = {
  type StructureLiteral (line 385) | type StructureLiteral = {
  type TypeAlias (line 426) | type TypeAlias = {
  type EnumerationEntry (line 470) | type EnumerationEntry = {
  type EnumerationType (line 511) | type EnumerationType = { kind: 'base'; name: 'string' | 'integer' | 'uin...
  type Enumeration (line 516) | type Enumeration = {
  type MetaData (line 569) | type MetaData = {
  type MetaModel (line 579) | type MetaModel = {

FILE: js/page.js
  function loadAnalytics (line 8) | function loadAnalytics(gtag) {
  function onConsentChanged (line 13) | function onConsentChanged() {
  function consentRequired (line 24) | function consentRequired() {
  function gtag (line 31) | function gtag() {
Condensed preview — 248 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,162K chars).
[
  {
    "path": ".gitattributes",
    "chars": 64,
    "preview": "* text=auto\n\nLicense.txt eol=crlf\nThirdPartyNotices.txt eol=crlf"
  },
  {
    "path": ".gitignore",
    "chars": 54,
    "preview": "npm-debug.log\n_site/\n.bundle/\nvendor/\n.jekyll-metadata"
  },
  {
    "path": ".vscode/settings.json",
    "chars": 510,
    "preview": "{\n\t\"editor.rulers\": [\n\t\t80\n\t],\n\t\"cSpell.words\": [\n\t\t\"ABAP\",\n\t\t\"EBNF\",\n\t\t\"LSIF\",\n\t\t\"Naur\",\n\t\t\"RGBA\",\n\t\t\"Retriggers\",\n\t\t\"S"
  },
  {
    "path": ".vscode/spellright.dict",
    "chars": 199,
    "preview": "params\nBibTeX\nCoffeescript\nDockerfile\nIni\nLaTeX\nMakefile\nPowershell\ncshtml\nShaderLab\nTeX\nTextDocumentPositionParams\nsect"
  },
  {
    "path": ".vscode/tasks.json",
    "chars": 264,
    "preview": "{\n\t// See https://go.microsoft.com/fwlink/?LinkId=733558\n\t// for the documentation about the tasks.json format\n\t\"version"
  },
  {
    "path": "404.html",
    "chars": 142,
    "preview": "---\nlayout: default\n---\n\n<div class=\"container text-center\">\n    <p>The page you are looking for cannot be found.</p>\n  "
  },
  {
    "path": "Gemfile",
    "chars": 509,
    "preview": "source \"https://rubygems.org\"\nruby RUBY_VERSION\n\n# gem \"jekyll\", \"3.6.2\"\n\n# to use GitHub Pages\n# gem \"github-pages\", gr"
  },
  {
    "path": "License-code.txt",
    "chars": 1072,
    "preview": "MIT License\n\nCopyright (c) Microsoft Corporation.\n\nPermission is hereby granted, free of charge, to any person obtaining"
  },
  {
    "path": "License.txt",
    "chars": 19039,
    "preview": "Attribution 4.0 International\r\n\r\n=======================================================================\r\n\r\nCreative Com"
  },
  {
    "path": "SECURITY.md",
    "chars": 2757,
    "preview": "<!-- BEGIN MICROSOFT SECURITY.MD V0.0.7 BLOCK -->\n\n## Security\n\nMicrosoft takes the security of our software products an"
  },
  {
    "path": "ThirdPartyNotices.txt",
    "chars": 4157,
    "preview": "THIRD-PARTY SOFTWARE NOTICES AND INFORMATION\r\nFor Microsoft language-server-protocol\r\n\r\nThis project incorporates materi"
  },
  {
    "path": "_config.yml",
    "chars": 1289,
    "preview": "# Site settings\ntitle: Official page for Language Server Protocol\ndescription: >\n  Language Server Protocol documentatio"
  },
  {
    "path": "_data/base-0-9-toc.yml",
    "chars": 1902,
    "preview": "- title: Table of Contents\n  reveal: baseProtocol\n  children:\n  - title: Base Protocol\n    anchor: baseProtocol\n    chil"
  },
  {
    "path": "_data/linkableTypes.yml",
    "chars": 32275,
    "preview": "- name: \"Linkable Types\"\n  children:\n  - type: 'integer'\n    link: '#integer'\n  - type: 'uinteger'\n    link: '#uinteger'"
  },
  {
    "path": "_data/lsif-0-4-0-toc.yml",
    "chars": 1527,
    "preview": "- title: Table of Contents\n  reveal: _general\n  children:\n  - title: General\n    anchor: _general\n    children:\n    - ti"
  },
  {
    "path": "_data/lsif-0-5-0-toc.yml",
    "chars": 1646,
    "preview": "- title: Table of Contents\n  reveal: _general\n  children:\n  - title: General\n    anchor: _general\n    children:\n    - ti"
  },
  {
    "path": "_data/lsif-0-6-0-toc.yml",
    "chars": 1646,
    "preview": "- title: Table of Contents\n  reveal: _general\n  children:\n  - title: General\n    anchor: _general\n    children:\n    - ti"
  },
  {
    "path": "_data/overviews.yml",
    "chars": 89,
    "preview": "- title: LSP\n  url: /overviews/lsp/overview\n- title: LSIF\n  url: /overviews/lsif/overview"
  },
  {
    "path": "_data/specification-3-14-toc.yml",
    "chars": 4515,
    "preview": "- title: Message Overview\n  reveal: general\n  children:\n  - title: General\n    anchor: general\n    children:\n    - title"
  },
  {
    "path": "_data/specification-3-15-toc.yml",
    "chars": 6881,
    "preview": "- title: Message Overview\n  reveal: baseProtocol\n  children:\n  - title: Base Protocol\n    anchor: baseProtocol\n    child"
  },
  {
    "path": "_data/specification-3-16-toc.yml",
    "chars": 7828,
    "preview": "- title: Message Overview\n  reveal: baseProtocol\n  children:\n  - title: Base Protocol\n    anchor: baseProtocol\n    child"
  },
  {
    "path": "_data/specification-3-17-toc.yml",
    "chars": 10148,
    "preview": "- title: Message Overview\n  reveal: baseProtocol\n  children:\n  - title: Base Protocol\n    anchor: baseProtocol\n    child"
  },
  {
    "path": "_data/specification-3-18-toc.yml",
    "chars": 10601,
    "preview": "- title: Message Overview\n  reveal: baseProtocol\n  children:\n  - title: Base Protocol\n    anchor: baseProtocol\n    child"
  },
  {
    "path": "_data/specifications.yml",
    "chars": 649,
    "preview": "- title: LSP\n  anchor: lsp\n  children:\n  - title: 3.17 (Current)\n    version: 3.17\n    url: /specifications/lsp/3.17/spe"
  },
  {
    "path": "_implementors/sdks.md",
    "chars": 3731,
    "preview": "---\nlayout: implementors\ntitle:  \"SDKs for the LSP\"\nshortTitle: \"SDKs\"\nauthor: Microsoft\nindex: 3\n---\n\n*If you are missi"
  },
  {
    "path": "_implementors/servers.md",
    "chars": 50024,
    "preview": "---\nlayout: implementors\ntitle:  \"Language Servers\"\nshortTitle: \"Language Servers\"\nauthor: Microsoft\nindex: 1\n---\n\n*If y"
  },
  {
    "path": "_implementors/tools.md",
    "chars": 9323,
    "preview": "---\nlayout: implementors\ntitle:  \"Tools supporting the LSP\"\nshortTitle: \"Supporting Tools\"\nauthor: Microsoft\nindex: 2\n--"
  },
  {
    "path": "_implementors/utilities.md",
    "chars": 1670,
    "preview": "---\nlayout: implementors\ntitle:  \"Utilities for LSPs\"\nshortTitle: \"Utilities\"\nauthor: Microsoft\nindex: 4\n---\n\n*If you ar"
  },
  {
    "path": "_includes/cookie_notice.html",
    "chars": 30,
    "preview": "<div id='cookie-banner'></div>"
  },
  {
    "path": "_includes/footer.html",
    "chars": 2243,
    "preview": "<footer class=\"footer\">\n    <script>\n        function manageConsent() {\n            if (WcpConsent.siteConsent.isConsent"
  },
  {
    "path": "_includes/head.html",
    "chars": 1305,
    "preview": "<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" co"
  },
  {
    "path": "_includes/js_files.html",
    "chars": 2676,
    "preview": "<script>\n  var baseurl = '{{ site.baseurl }}';\n</script>\n\n<script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\""
  },
  {
    "path": "_includes/messages/3.17/exit.md",
    "chars": 316,
    "preview": "#### <a href=\"#exit\" name=\"exit\" class=\"anchor\">Exit Notification (:arrow_right:)</a>\n\nA notification to ask the server "
  },
  {
    "path": "_includes/messages/3.17/initialized.md",
    "chars": 620,
    "preview": "#### <a href=\"#initialized\" name=\"initialized\" class=\"anchor\">Initialized Notification (:arrow_right:)</a>\n\nThe initiali"
  },
  {
    "path": "_includes/messages/3.17/logMessage.md",
    "chars": 619,
    "preview": "#### <a href=\"#window_logMessage\" name=\"window_logMessage\" class=\"anchor\">LogMessage Notification (:arrow_left:)</a>\n\nTh"
  },
  {
    "path": "_includes/messages/3.17/logTrace.md",
    "chars": 927,
    "preview": "#### <a href=\"#logTrace\" name=\"logTrace\" class=\"anchor\">LogTrace Notification (:arrow_left:)</a>\n\nA notification to log "
  },
  {
    "path": "_includes/messages/3.17/registerCapability.md",
    "chars": 3933,
    "preview": "#### <a href=\"#client_registerCapability\" name=\"client_registerCapability\" class=\"anchor\">Register Capability (:arrow_ri"
  },
  {
    "path": "_includes/messages/3.17/setTrace.md",
    "chars": 420,
    "preview": "#### <a href=\"#setTrace\" name=\"setTrace\" class=\"anchor\">SetTrace Notification (:arrow_right:)</a>\n\nA notification that s"
  },
  {
    "path": "_includes/messages/3.17/showMessage.md",
    "chars": 1100,
    "preview": "#### <a href=\"#window_showMessage\" name=\"window_showMessage\" class=\"anchor\">ShowMessage Notification (:arrow_left:)</a>\n"
  },
  {
    "path": "_includes/messages/3.17/showMessageRequest.md",
    "chars": 1929,
    "preview": "#### <a href=\"#window_showMessageRequest\" name=\"window_showMessageRequest\" class=\"anchor\">ShowMessage Request (:arrow_ri"
  },
  {
    "path": "_includes/messages/3.17/shutdown.md",
    "chars": 878,
    "preview": "#### <a href=\"#shutdown\" name=\"shutdown\" class=\"anchor\">Shutdown Request (:leftwards_arrow_with_hook:)</a>\n\nThe shutdown"
  },
  {
    "path": "_includes/messages/3.17/telemetryEvent.md",
    "chars": 535,
    "preview": "#### <a href=\"#telemetry_event\" name=\"telemetry_event\" class=\"anchor\">Telemetry Notification (:arrow_left:)</a>\n\nThe tel"
  },
  {
    "path": "_includes/messages/3.17/unregisterCapability.md",
    "chars": 1680,
    "preview": "#### <a href=\"#client_unregisterCapability\" name=\"client_unregisterCapability\" class=\"anchor\">Unregister Capability (:ar"
  },
  {
    "path": "_includes/messages/3.18/exit.md",
    "chars": 316,
    "preview": "#### <a href=\"#exit\" name=\"exit\" class=\"anchor\">Exit Notification (:arrow_right:)</a>\n\nA notification to ask the server "
  },
  {
    "path": "_includes/messages/3.18/initialized.md",
    "chars": 621,
    "preview": "#### <a href=\"#initialized\" name=\"initialized\" class=\"anchor\">Initialized Notification (:arrow_right:)</a>\n\nThe initiali"
  },
  {
    "path": "_includes/messages/3.18/logMessage.md",
    "chars": 621,
    "preview": "#### <a href=\"#window_logMessage\" name=\"window_logMessage\" class=\"anchor\">LogMessage Notification (:arrow_left:)</a>\n\nTh"
  },
  {
    "path": "_includes/messages/3.18/logTrace.md",
    "chars": 928,
    "preview": "#### <a href=\"#logTrace\" name=\"logTrace\" class=\"anchor\">LogTrace Notification (:arrow_left:)</a>\n\nA notification to log "
  },
  {
    "path": "_includes/messages/3.18/registerCapability.md",
    "chars": 3940,
    "preview": "#### <a href=\"#client_registerCapability\" name=\"client_registerCapability\" class=\"anchor\">Register Capability (:arrow_ri"
  },
  {
    "path": "_includes/messages/3.18/setTrace.md",
    "chars": 420,
    "preview": "#### <a href=\"#setTrace\" name=\"setTrace\" class=\"anchor\">SetTrace Notification (:arrow_right:)</a>\n\nA notification that s"
  },
  {
    "path": "_includes/messages/3.18/showMessage.md",
    "chars": 1086,
    "preview": "#### <a href=\"#window_showMessage\" name=\"window_showMessage\" class=\"anchor\">ShowMessage Notification (:arrow_left:)</a>\n"
  },
  {
    "path": "_includes/messages/3.18/showMessageRequest.md",
    "chars": 1932,
    "preview": "#### <a href=\"#window_showMessageRequest\" name=\"window_showMessageRequest\" class=\"anchor\">ShowMessage Request (:arrow_ri"
  },
  {
    "path": "_includes/messages/3.18/shutdown.md",
    "chars": 878,
    "preview": "#### <a href=\"#shutdown\" name=\"shutdown\" class=\"anchor\">Shutdown Request (:leftwards_arrow_with_hook:)</a>\n\nThe shutdown"
  },
  {
    "path": "_includes/messages/3.18/telemetryEvent.md",
    "chars": 535,
    "preview": "#### <a href=\"#telemetry_event\" name=\"telemetry_event\" class=\"anchor\">Telemetry Notification (:arrow_left:)</a>\n\nThe tel"
  },
  {
    "path": "_includes/messages/3.18/unregisterCapability.md",
    "chars": 1681,
    "preview": "#### <a href=\"#client_unregisterCapability\" name=\"client_unregisterCapability\" class=\"anchor\">Unregister Capability (:ar"
  },
  {
    "path": "_includes/topnav.html",
    "chars": 1688,
    "preview": "<header class=\"navbar navbar-expand-lg navbar-dark bg-primary lsp-navbar\">\n    <div class=\"container navbar-container\">\n"
  },
  {
    "path": "_includes/types/enumerations.md",
    "chars": 1218,
    "preview": "#### <a href=\"#enumerations\" name=\"enumerations\" class=\"anchor\">Enumerations</a>\n\nThe protocol supports two kind of enum"
  },
  {
    "path": "_includes/types/traceValue.md",
    "chars": 448,
    "preview": "#### <a href=\"#traceValue\" name=\"traceValue\" class=\"anchor\">TraceValue</a>\n\nA `TraceValue` represents the level of verbo"
  },
  {
    "path": "_includes/types/uri.md",
    "chars": 2175,
    "preview": "#### <a href=\"#uri\" name=\"uri\" class=\"anchor\">URI</a>\n\nURI's are transferred as strings. The URI's format is defined in "
  },
  {
    "path": "_layouts/default.html",
    "chars": 327,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n\n{% include head.html %}\n\n<body>\n    {% include cookie_notice.html %}\n    {% include to"
  },
  {
    "path": "_layouts/implementors.html",
    "chars": 1638,
    "preview": "---\nlayout: default\n---\n\n<div class=\"container\">\n    <div class=\"row single-page\">\n        <div class=\"d-none col-lg-2 d"
  },
  {
    "path": "_layouts/overview.html",
    "chars": 1452,
    "preview": "---\nlayout: default\n---\n\n<div class=\"container\">\n    <div class=\"row single-page\">\n        <div class=\"d-none col-lg-2 d"
  },
  {
    "path": "_layouts/redirect.html",
    "chars": 455,
    "preview": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <meta charset=\"utf-8\">\n  <title>Redirecting&hellip;</title>\n  <link rel=\"canonical"
  },
  {
    "path": "_layouts/singlePage.html",
    "chars": 391,
    "preview": "---\nlayout: default\n---\n\n<div class=\"container\">\n    <div class=\"row single-page\">\n        <div class=\"col-lg-2 d-none d"
  },
  {
    "path": "_layouts/specifications.html",
    "chars": 5171,
    "preview": "---\nlayout: default\n---\n\n<div class=\"container\">\n    <div class=\"row single-page\">\n        <div class=\"d-none col-lg-2 d"
  },
  {
    "path": "_overviews/lsif/overview.md",
    "chars": 8952,
    "preview": "---\ntitle: Overview\ntopic: LSIF\nlayout: overview\nsectionid: lsifOverview\n---\n## What is the Language Server Index Format"
  },
  {
    "path": "_overviews/lsp/overview.md",
    "chars": 6104,
    "preview": "---\ntitle: Overview\ntopic: LSP\nlayout: overview\nsectionid: overview\nredirect_from:\n  - /overview\n---\n\n## What is the Lan"
  },
  {
    "path": "_specifications/base/0.9/specification.md",
    "chars": 37326,
    "preview": "---\ntitle: Base Protocol Specification\nshortTitle: 0.9\nlayout: specifications\nsectionid: base-0-9\ntoc: base-0-9-toc\nfull"
  },
  {
    "path": "_specifications/lsif/0.4.0/implementation.md",
    "chars": 6524,
    "preview": "# Building an LSIF exporter\n\nWith an LSIF (Language Server Index Format) exporter for your programming language of choic"
  },
  {
    "path": "_specifications/lsif/0.4.0/specification.md",
    "chars": 52288,
    "preview": "---\ntitle: LSIF Specification\nshortTitle: 0.4.0 (Previous)\nlayout: specifications\nsectionid: lsif-0-4-0\ntoc: lsif-0-4-0-"
  },
  {
    "path": "_specifications/lsif/0.5.0/implementation.md",
    "chars": 6524,
    "preview": "# Building an LSIF exporter\n\nWith an LSIF (Language Server Index Format) exporter for your programming language of choic"
  },
  {
    "path": "_specifications/lsif/0.5.0/specification.md",
    "chars": 63314,
    "preview": "---\ntitle: LSIF Specification\nshortTitle: 0.5.0 (Previous)\nlayout: specifications\nsectionid: lsif-0-5-0\ntoc: lsif-0-5-0-"
  },
  {
    "path": "_specifications/lsif/0.6.0/implementation.md",
    "chars": 6524,
    "preview": "# Building an LSIF exporter\n\nWith an LSIF (Language Server Index Format) exporter for your programming language of choic"
  },
  {
    "path": "_specifications/lsif/0.6.0/specification.md",
    "chars": 64903,
    "preview": "---\ntitle: LSIF Specification\nshortTitle: 0.6.0 (Current)\nlayout: specifications\nsectionid: lsif-0-6-0\ntoc: lsif-0-6-0-t"
  },
  {
    "path": "_specifications/lsp/3.17/general/initialize.md",
    "chars": 24286,
    "preview": "#### <a href=\"#initialize\" name=\"initialize\" class=\"anchor\">Initialize Request (:leftwards_arrow_with_hook:)</a>\n\nThe in"
  },
  {
    "path": "_specifications/lsp/3.17/language/callHierarchy.md",
    "chars": 6812,
    "preview": "#### <a href=\"#textDocument_prepareCallHierarchy\" name=\"textDocument_prepareCallHierarchy\" class=\"anchor\">Prepare Call H"
  },
  {
    "path": "_specifications/lsp/3.17/language/codeAction.md",
    "chars": 14279,
    "preview": "#### <a href=\"#textDocument_codeAction\" name=\"textDocument_codeAction\" class=\"anchor\">Code Action Request (:leftwards_ar"
  },
  {
    "path": "_specifications/lsp/3.17/language/codeLens.md",
    "chars": 4896,
    "preview": "#### <a href=\"#textDocument_codeLens\" name=\"textDocument_codeLens\" class=\"anchor\">Code Lens Request (:leftwards_arrow_wi"
  },
  {
    "path": "_specifications/lsp/3.17/language/colorPresentation.md",
    "chars": 2267,
    "preview": "#### <a href=\"#textDocument_colorPresentation\" name=\"textDocument_colorPresentation\" class=\"anchor\">Color Presentation R"
  },
  {
    "path": "_specifications/lsp/3.17/language/completion.md",
    "chars": 29317,
    "preview": "#### <a href=\"#textDocument_completion\" name=\"textDocument_completion\" class=\"anchor\">Completion Request (:leftwards_arr"
  },
  {
    "path": "_specifications/lsp/3.17/language/declaration.md",
    "chars": 2659,
    "preview": "#### <a href=\"#textDocument_declaration\" name=\"textDocument_declaration\" class=\"anchor\">Goto Declaration Request (:leftw"
  },
  {
    "path": "_specifications/lsp/3.17/language/definition.md",
    "chars": 2410,
    "preview": "#### <a href=\"#textDocument_definition\" name=\"textDocument_definition\" class=\"anchor\">Goto Definition Request (:leftward"
  },
  {
    "path": "_specifications/lsp/3.17/language/documentColor.md",
    "chars": 3306,
    "preview": "#### <a href=\"#textDocument_documentColor\" name=\"textDocument_documentColor\" class=\"anchor\">Document Color Request (:lef"
  },
  {
    "path": "_specifications/lsp/3.17/language/documentHighlight.md",
    "chars": 3616,
    "preview": "#### <a href=\"#textDocument_documentHighlight\" name=\"textDocument_documentHighlight\" class=\"anchor\">Document Highlights "
  },
  {
    "path": "_specifications/lsp/3.17/language/documentLink.md",
    "chars": 3685,
    "preview": "#### <a href=\"#textDocument_documentLink\" name=\"textDocument_documentLink\" class=\"anchor\">Document Link Request (:leftwa"
  },
  {
    "path": "_specifications/lsp/3.17/language/documentSymbol.md",
    "chars": 8486,
    "preview": "#### <a href=\"#textDocument_documentSymbol\" name=\"textDocument_documentSymbol\" class=\"anchor\">Document Symbols Request ("
  },
  {
    "path": "_specifications/lsp/3.17/language/foldingRange.md",
    "chars": 5769,
    "preview": "#### <a href=\"#textDocument_foldingRange\" name=\"textDocument_foldingRange\" class=\"anchor\">Folding Range Request (:leftwa"
  },
  {
    "path": "_specifications/lsp/3.17/language/formatting.md",
    "chars": 3040,
    "preview": "#### <a href=\"#textDocument_formatting\" name=\"textDocument_formatting\" class=\"anchor\">Document Formatting Request  (:lef"
  },
  {
    "path": "_specifications/lsp/3.17/language/hover.md",
    "chars": 3611,
    "preview": "#### <a href=\"#textDocument_hover\" name=\"textDocument_hover\" class=\"anchor\">Hover Request (:leftwards_arrow_with_hook:)<"
  },
  {
    "path": "_specifications/lsp/3.17/language/implementation.md",
    "chars": 2770,
    "preview": "#### <a href=\"#textDocument_implementation\" name=\"textDocument_implementation\" class=\"anchor\">Goto Implementation Reques"
  },
  {
    "path": "_specifications/lsp/3.17/language/inlayHint.md",
    "chars": 9675,
    "preview": "#### <a href=\"#textDocument_inlayHint\" name=\"textDocument_inlayHint\" class=\"anchor\">Inlay Hint Request (:leftwards_arrow"
  },
  {
    "path": "_specifications/lsp/3.17/language/inlineValue.md",
    "chars": 7464,
    "preview": "#### <a href=\"#textDocument_inlineValue\" name=\"textDocument_inlineValue\" class=\"anchor\">Inline Value Request (:leftwards"
  },
  {
    "path": "_specifications/lsp/3.17/language/linkedEditingRange.md",
    "chars": 3335,
    "preview": "#### <a href=\"#textDocument_linkedEditingRange\" name=\"textDocument_linkedEditingRange\" class=\"anchor\">Linked Editing Ran"
  },
  {
    "path": "_specifications/lsp/3.17/language/moniker.md",
    "chars": 4876,
    "preview": "#### <a href=\"#textDocument_moniker\" name=\"textDocument_moniker\" class=\"anchor\">Monikers (:leftwards_arrow_with_hook:)</"
  },
  {
    "path": "_specifications/lsp/3.17/language/onTypeFormatting.md",
    "chars": 2953,
    "preview": "#### <a href=\"#textDocument_onTypeFormatting\" name=\"textDocument_onTypeFormatting\" class=\"anchor\">Document on Type Forma"
  },
  {
    "path": "_specifications/lsp/3.17/language/publishDiagnostics.md",
    "chars": 3380,
    "preview": "#### <a href=\"#textDocument_publishDiagnostics\" name=\"textDocument_publishDiagnostics\" class=\"anchor\">PublishDiagnostics"
  },
  {
    "path": "_specifications/lsp/3.17/language/pullDiagnostics.md",
    "chars": 17978,
    "preview": "#### <a href=\"#textDocument_pullDiagnostics\" name=\"textDocument_pullDiagnostics\" class=\"anchor\">Pull Diagnostics</a>\n\nDi"
  },
  {
    "path": "_specifications/lsp/3.17/language/rangeFormatting.md",
    "chars": 2395,
    "preview": "#### <a href=\"#textDocument_rangeFormatting\" name=\"textDocument_rangeFormatting\" class=\"anchor\">Document Range Formattin"
  },
  {
    "path": "_specifications/lsp/3.17/language/references.md",
    "chars": 2275,
    "preview": "#### <a href=\"#textDocument_references\" name=\"textDocument_references\" class=\"anchor\">Find References Request (:leftward"
  },
  {
    "path": "_specifications/lsp/3.17/language/rename.md",
    "chars": 5063,
    "preview": "#### <a href=\"#textDocument_rename\" name=\"textDocument_rename\" class=\"anchor\">Rename Request (:leftwards_arrow_with_hook"
  },
  {
    "path": "_specifications/lsp/3.17/language/selectionRange.md",
    "chars": 3407,
    "preview": "#### <a href=\"#textDocument_selectionRange\" name=\"textDocument_selectionRange\" class=\"anchor\">Selection Range Request (:"
  },
  {
    "path": "_specifications/lsp/3.17/language/semanticTokens.md",
    "chars": 21248,
    "preview": "#### <a href=\"#textDocument_semanticTokens\" name=\"textDocument_semanticTokens\" class=\"anchor\">Semantic Tokens (:leftward"
  },
  {
    "path": "_specifications/lsp/3.17/language/signatureHelp.md",
    "chars": 8676,
    "preview": "#### <a href=\"#textDocument_signatureHelp\" name=\"textDocument_signatureHelp\" class=\"anchor\">Signature Help Request (:lef"
  },
  {
    "path": "_specifications/lsp/3.17/language/typeDefinition.md",
    "chars": 2773,
    "preview": "#### <a href=\"#textDocument_typeDefinition\" name=\"textDocument_typeDefinition\" class=\"anchor\">Goto Type Definition Reque"
  },
  {
    "path": "_specifications/lsp/3.17/language/typeHierarchy.md",
    "chars": 6167,
    "preview": "\n#### <a href=\"#textDocument_prepareTypeHierarchy\" name=\"textDocument_prepareTypeHierarchy\" class=\"anchor\">Prepare Type "
  },
  {
    "path": "_specifications/lsp/3.17/metaModel/metaModel.json",
    "chars": 395118,
    "preview": "{\n\t\"metaData\": {\n\t\t\"version\": \"3.17.0\"\n\t},\n\t\"requests\": [\n\t\t{\n\t\t\t\"method\": \"textDocument/implementation\",\n\t\t\t\"result\": {"
  },
  {
    "path": "_specifications/lsp/3.17/metaModel/metaModel.schema.json",
    "chars": 21796,
    "preview": "{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"definitions\": {\n    \"AndType\": {\n      \"additionalPropertie"
  },
  {
    "path": "_specifications/lsp/3.17/metaModel/metaModel.ts",
    "chars": 10430,
    "preview": "/* --------------------------------------------------------------------------------------------\n * Copyright (c) Microso"
  },
  {
    "path": "_specifications/lsp/3.17/notebookDocument/notebook.md",
    "chars": 18892,
    "preview": "### <a href=\"#notebookDocument_synchronization\" name=\"notebookDocument_synchronization\" class=\"anchor\">Notebook Document"
  },
  {
    "path": "_specifications/lsp/3.17/specification.md",
    "chars": 42653,
    "preview": "---\ntitle: Specification\nshortTitle: 3.17 (Upcoming)\nlayout: specifications\nsectionid: specification-3-17\ntoc: specifica"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/didChange.md",
    "chars": 4234,
    "preview": "#### <a href=\"#textDocument_didChange\" name=\"textDocument_didChange\" class=\"anchor\">DidChangeTextDocument Notification ("
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/didClose.md",
    "chars": 1420,
    "preview": "#### <a href=\"#textDocument_didClose\" name=\"textDocument_didClose\" class=\"anchor\">DidCloseTextDocument Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/didOpen.md",
    "chars": 1835,
    "preview": "#### <a href=\"#textDocument_didOpen\" name=\"textDocument_didOpen\" class=\"anchor\">DidOpenTextDocument Notification (:arrow"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/didRename.md",
    "chars": 708,
    "preview": "#### <a href=\"#textDocument_didRename\" name=\"textDocument_didRename\" class=\"anchor\">Renaming a document</a>\n\nDocument re"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/didSave.md",
    "chars": 1921,
    "preview": "#### <a href=\"#textDocument_didSave\" name=\"textDocument_didSave\" class=\"anchor\">DidSaveTextDocument Notification (:arrow"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/willSave.md",
    "chars": 2063,
    "preview": "#### <a href=\"#textDocument_willSave\" name=\"textDocument_willSave\" class=\"anchor\">WillSaveTextDocument Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md",
    "chars": 1562,
    "preview": "#### <a href=\"#textDocument_willSaveWaitUntil\" name=\"textDocument_willSaveWaitUntil\" class=\"anchor\">WillSaveWaitUntilTex"
  },
  {
    "path": "_specifications/lsp/3.17/types/command.md",
    "chars": 795,
    "preview": "#### <a href=\"#command\" name=\"command\" class=\"anchor\">Command</a>\n\nRepresents a reference to a command. Provides a title"
  },
  {
    "path": "_specifications/lsp/3.17/types/diagnostic.md",
    "chars": 3769,
    "preview": "#### <a href=\"#diagnostic\" name=\"diagnostic\" class=\"anchor\">Diagnostic</a>\n\nRepresents a diagnostic, such as a compiler "
  },
  {
    "path": "_specifications/lsp/3.17/types/documentFilter.md",
    "chars": 1839,
    "preview": "#### <a href=\"#documentFilter\" name=\"documentFilter\" class=\"anchor\">DocumentFilter</a>\n\nA document filter denotes a docu"
  },
  {
    "path": "_specifications/lsp/3.17/types/location.md",
    "chars": 221,
    "preview": "#### <a href=\"#location\" name=\"location\" class=\"anchor\">Location</a>\n\nRepresents a location inside a resource, such as a"
  },
  {
    "path": "_specifications/lsp/3.17/types/locationLink.md",
    "chars": 1022,
    "preview": "#### <a href=\"#locationLink\" name=\"locationLink\" class=\"anchor\">LocationLink</a>\n\nRepresents a link between a source and"
  },
  {
    "path": "_specifications/lsp/3.17/types/markupContent.md",
    "chars": 3159,
    "preview": "#### <a href=\"#markupContent\" name=\"markupContent\" class=\"anchor\">MarkupContent</a>\n\n A `MarkupContent` literal represen"
  },
  {
    "path": "_specifications/lsp/3.17/types/partialResultParams.md",
    "chars": 373,
    "preview": "#### <a href=\"#partialResultParams\" name=\"partialResultParams\" class=\"anchor\">PartialResultParams</a>\n\nA parameter liter"
  },
  {
    "path": "_specifications/lsp/3.17/types/partialResults.md",
    "chars": 1996,
    "preview": "#### <a href=\"#partialResults\" name=\"partialResults\" class=\"anchor\">Partial Result Progress</a>\n\n> *Since version 3.15.0"
  },
  {
    "path": "_specifications/lsp/3.17/types/position.md",
    "chars": 1982,
    "preview": "#### <a href=\"#position\" name=\"position\" class=\"anchor\">Position</a>\n\nPosition in a text document expressed as zero-base"
  },
  {
    "path": "_specifications/lsp/3.17/types/range.md",
    "chars": 651,
    "preview": "#### <a href=\"#range\" name=\"range\" class=\"anchor\">Range</a>\n\nA range in a text document expressed as (zero-based) start "
  },
  {
    "path": "_specifications/lsp/3.17/types/regexp.md",
    "chars": 2745,
    "preview": "#### <a href=\"#regExp\" name=\"regExp\" class=\"anchor\">Regular Expressions</a>\n\nRegular expression are a powerful tool and "
  },
  {
    "path": "_specifications/lsp/3.17/types/resourceChanges.md",
    "chars": 3416,
    "preview": "### <a href=\"#resourceChanges\" name=\"resourceChanges\" class=\"anchor\">File Resource changes</a>\n\n> New in version 3.13. S"
  },
  {
    "path": "_specifications/lsp/3.17/types/textDocumentEdit.md",
    "chars": 1236,
    "preview": "#### <a href=\"#textDocumentEdit\" name=\"textDocumentEdit\" class=\"anchor\">TextDocumentEdit</a>\n\n> New in version 3.16: sup"
  },
  {
    "path": "_specifications/lsp/3.17/types/textDocumentIdentifier.md",
    "chars": 369,
    "preview": "#### <a href=\"#textDocumentIdentifier\" name=\"textDocumentIdentifier\" class=\"anchor\">TextDocumentIdentifier</a>\n\nText doc"
  },
  {
    "path": "_specifications/lsp/3.17/types/textDocumentItem.md",
    "chars": 1997,
    "preview": "#### <a href=\"#textDocumentItem\" name=\"textDocumentItem\" class=\"anchor\">TextDocumentItem</a>\n\nAn item to transfer a text"
  },
  {
    "path": "_specifications/lsp/3.17/types/textDocumentPositionParams.md",
    "chars": 747,
    "preview": "#### <a href=\"#textDocumentPositionParams\" name=\"textDocumentPositionParams\" class=\"anchor\">TextDocumentPositionParams</"
  },
  {
    "path": "_specifications/lsp/3.17/types/textDocuments.md",
    "chars": 2217,
    "preview": "#### <a href=\"#textDocuments\" name=\"textDocuments\" class=\"anchor\">Text Documents</a>\n\nThe current protocol is tailored f"
  },
  {
    "path": "_specifications/lsp/3.17/types/textEdit.md",
    "chars": 2600,
    "preview": "#### <a href=\"#textEdit\" name=\"textEdit\" class=\"anchor\">TextEdit & AnnotatedTextEdit</a>\n\n> New in version 3.16: Support"
  },
  {
    "path": "_specifications/lsp/3.17/types/textEditArray.md",
    "chars": 831,
    "preview": "#### <a href=\"#textEditArray\" name=\"textEditArray\" class=\"anchor\">TextEdit[]</a>\n\nComplex text manipulations are describ"
  },
  {
    "path": "_specifications/lsp/3.17/types/versionedTextDocumentIdentifier.md",
    "chars": 1551,
    "preview": "#### <a href=\"#versionedTextDocumentIdentifier\" name=\"versionedTextDocumentIdentifier\" class=\"anchor\">VersionedTextDocum"
  },
  {
    "path": "_specifications/lsp/3.17/types/workDoneProgress.md",
    "chars": 7828,
    "preview": "#### <a href=\"#workDoneProgress\" name=\"workDoneProgress\" class=\"anchor\">Work Done Progress</a>\n\n> *Since version 3.15.0*"
  },
  {
    "path": "_specifications/lsp/3.17/types/workspaceEdit.md",
    "chars": 6142,
    "preview": "#### <a href=\"#workspaceEdit\" name=\"workspaceEdit\" class=\"anchor\">WorkspaceEdit</a>\n\nA workspace edit represents changes"
  },
  {
    "path": "_specifications/lsp/3.17/window/showDocument.md",
    "chars": 2178,
    "preview": "#### <a href=\"#window_showDocument\" name=\"window_showDocument\" class=\"anchor\">Show Document Request (:arrow_right_hook:)"
  },
  {
    "path": "_specifications/lsp/3.17/window/workDoneProgressCancel.md",
    "chars": 772,
    "preview": "#### <a href=\"#window_workDoneProgress_cancel\" name=\"window_workDoneProgress_cancel\" class=\"anchor\">Cancel a Work Done P"
  },
  {
    "path": "_specifications/lsp/3.17/window/workDoneProgressCreate.md",
    "chars": 930,
    "preview": "#### <a href=\"#window_workDoneProgress_create\" name=\"window_workDoneProgress_create\" class=\"anchor\">Create Work Done Pro"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/applyEdit.md",
    "chars": 1950,
    "preview": "#### <a href=\"#workspace_applyEdit\" name=\"workspace_applyEdit\" class=\"anchor\">Applies a WorkspaceEdit (:arrow_right_hook"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/configuration.md",
    "chars": 2705,
    "preview": "#### <a href=\"#workspace_configuration\" name=\"workspace_configuration\" class=\"anchor\">Configuration Request (:arrow_righ"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didChangeConfiguration.md",
    "chars": 1217,
    "preview": "#### <a href=\"#workspace_didChangeConfiguration\" name=\"workspace_didChangeConfiguration\" class=\"anchor\">DidChangeConfigu"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md",
    "chars": 6470,
    "preview": "#### <a href=\"#workspace_didChangeWatchedFiles\" name=\"workspace_didChangeWatchedFiles\" class=\"anchor\">DidChangeWatchedFi"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didChangeWorkspaceFolders.md",
    "chars": 1818,
    "preview": "#### <a href=\"#workspace_didChangeWorkspaceFolders\" name=\"workspace_didChangeWorkspaceFolders\" class=\"anchor\">DidChangeW"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didCreateFiles.md",
    "chars": 806,
    "preview": "#### <a href=\"#workspace_didCreateFiles\" name=\"workspace_didCreateFiles\" class=\"anchor\">DidCreateFiles Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didDeleteFiles.md",
    "chars": 806,
    "preview": "#### <a href=\"#workspace_didDeleteFiles\" name=\"workspace_didDeleteFiles\" class=\"anchor\">DidDeleteFiles Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/didRenameFiles.md",
    "chars": 806,
    "preview": "#### <a href=\"#workspace_didRenameFiles\" name=\"workspace_didRenameFiles\" class=\"anchor\">DidRenameFiles Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/executeCommand.md",
    "chars": 2508,
    "preview": "#### <a href=\"#workspace_executeCommand\" name=\"workspace_executeCommand\" class=\"anchor\">Execute a command (:leftwards_ar"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/symbol.md",
    "chars": 5766,
    "preview": "#### <a href=\"#workspace_symbol\" name=\"workspace_symbol\" class=\"anchor\">Workspace Symbols Request (:leftwards_arrow_with"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/willCreateFiles.md",
    "chars": 5233,
    "preview": "#### <a href=\"#workspace_willCreateFiles\" name=\"workspace_willCreateFiles\" class=\"anchor\">WillCreateFiles Request (:left"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/willDeleteFiles.md",
    "chars": 2102,
    "preview": "#### <a href=\"#workspace_willDeleteFiles\" name=\"workspace_willDeleteFiles\" class=\"anchor\">WillDeleteFiles Request (:left"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/willRenameFiles.md",
    "chars": 2299,
    "preview": "#### <a href=\"#workspace_willRenameFiles\" name=\"workspace_willRenameFiles\" class=\"anchor\">WillRenameFiles Request (:left"
  },
  {
    "path": "_specifications/lsp/3.17/workspace/workspaceFolders.md",
    "chars": 2660,
    "preview": "#### <a href=\"#workspace_workspaceFolders\" name=\"workspace_workspaceFolders\" class=\"anchor\">Workspace folders request (:"
  },
  {
    "path": "_specifications/lsp/3.18/general/initialize.md",
    "chars": 25382,
    "preview": "#### <a href=\"#initialize\" name=\"initialize\" class=\"anchor\">Initialize Request (:leftwards_arrow_with_hook:)</a>\n\nThe in"
  },
  {
    "path": "_specifications/lsp/3.18/language/callHierarchy.md",
    "chars": 6819,
    "preview": "#### <a href=\"#textDocument_prepareCallHierarchy\" name=\"textDocument_prepareCallHierarchy\" class=\"anchor\">Prepare Call H"
  },
  {
    "path": "_specifications/lsp/3.18/language/codeAction.md",
    "chars": 18073,
    "preview": "#### <a href=\"#textDocument_codeAction\" name=\"textDocument_codeAction\" class=\"anchor\">Code Action Request (:leftwards_ar"
  },
  {
    "path": "_specifications/lsp/3.18/language/codeLens.md",
    "chars": 5400,
    "preview": "#### <a href=\"#textDocument_codeLens\" name=\"textDocument_codeLens\" class=\"anchor\">Code Lens Request (:leftwards_arrow_wi"
  },
  {
    "path": "_specifications/lsp/3.18/language/colorPresentation.md",
    "chars": 2267,
    "preview": "#### <a href=\"#textDocument_colorPresentation\" name=\"textDocument_colorPresentation\" class=\"anchor\">Color Presentation R"
  },
  {
    "path": "_specifications/lsp/3.18/language/completion.md",
    "chars": 34173,
    "preview": "#### <a href=\"#textDocument_completion\" name=\"textDocument_completion\" class=\"anchor\">Completion Request (:leftwards_arr"
  },
  {
    "path": "_specifications/lsp/3.18/language/declaration.md",
    "chars": 2661,
    "preview": "#### <a href=\"#textDocument_declaration\" name=\"textDocument_declaration\" class=\"anchor\">Go to Declaration Request (:left"
  },
  {
    "path": "_specifications/lsp/3.18/language/definition.md",
    "chars": 2411,
    "preview": "#### <a href=\"#textDocument_definition\" name=\"textDocument_definition\" class=\"anchor\">Go to Definition Request (:leftwar"
  },
  {
    "path": "_specifications/lsp/3.18/language/documentColor.md",
    "chars": 3306,
    "preview": "#### <a href=\"#textDocument_documentColor\" name=\"textDocument_documentColor\" class=\"anchor\">Document Color Request (:lef"
  },
  {
    "path": "_specifications/lsp/3.18/language/documentHighlight.md",
    "chars": 3617,
    "preview": "#### <a href=\"#textDocument_documentHighlight\" name=\"textDocument_documentHighlight\" class=\"anchor\">Document Highlights "
  },
  {
    "path": "_specifications/lsp/3.18/language/documentLink.md",
    "chars": 3686,
    "preview": "#### <a href=\"#textDocument_documentLink\" name=\"textDocument_documentLink\" class=\"anchor\">Document Link Request (:leftwa"
  },
  {
    "path": "_specifications/lsp/3.18/language/documentSymbol.md",
    "chars": 8501,
    "preview": "#### <a href=\"#textDocument_documentSymbol\" name=\"textDocument_documentSymbol\" class=\"anchor\">Document Symbols Request ("
  },
  {
    "path": "_specifications/lsp/3.18/language/foldingRange.md",
    "chars": 7549,
    "preview": "#### <a href=\"#textDocument_foldingRange\" name=\"textDocument_foldingRange\" class=\"anchor\">Folding Range Request (:leftwa"
  },
  {
    "path": "_specifications/lsp/3.18/language/formatting.md",
    "chars": 3044,
    "preview": "#### <a href=\"#textDocument_formatting\" name=\"textDocument_formatting\" class=\"anchor\">Document Formatting Request  (:lef"
  },
  {
    "path": "_specifications/lsp/3.18/language/hover.md",
    "chars": 3615,
    "preview": "#### <a href=\"#textDocument_hover\" name=\"textDocument_hover\" class=\"anchor\">Hover Request (:leftwards_arrow_with_hook:)<"
  },
  {
    "path": "_specifications/lsp/3.18/language/implementation.md",
    "chars": 2776,
    "preview": "#### <a href=\"#textDocument_implementation\" name=\"textDocument_implementation\" class=\"anchor\">Go to Implementation Reque"
  },
  {
    "path": "_specifications/lsp/3.18/language/inlayHint.md",
    "chars": 9688,
    "preview": "#### <a href=\"#textDocument_inlayHint\" name=\"textDocument_inlayHint\" class=\"anchor\">Inlay Hint Request (:leftwards_arrow"
  },
  {
    "path": "_specifications/lsp/3.18/language/inlineCompletion.md",
    "chars": 7397,
    "preview": "#### <a href=\"#textDocument_inlineCompletion\" name=\"textDocument_inlineCompletion\" class=\"anchor\">Inline Completion Requ"
  },
  {
    "path": "_specifications/lsp/3.18/language/inlineValue.md",
    "chars": 7477,
    "preview": "#### <a href=\"#textDocument_inlineValue\" name=\"textDocument_inlineValue\" class=\"anchor\">Inline Value Request (:leftwards"
  },
  {
    "path": "_specifications/lsp/3.18/language/linkedEditingRange.md",
    "chars": 3335,
    "preview": "#### <a href=\"#textDocument_linkedEditingRange\" name=\"textDocument_linkedEditingRange\" class=\"anchor\">Linked Editing Ran"
  },
  {
    "path": "_specifications/lsp/3.18/language/moniker.md",
    "chars": 4899,
    "preview": "#### <a href=\"#textDocument_moniker\" name=\"textDocument_moniker\" class=\"anchor\">Monikers (:leftwards_arrow_with_hook:)</"
  },
  {
    "path": "_specifications/lsp/3.18/language/onTypeFormatting.md",
    "chars": 2948,
    "preview": "#### <a href=\"#textDocument_onTypeFormatting\" name=\"textDocument_onTypeFormatting\" class=\"anchor\">Document on Type Forma"
  },
  {
    "path": "_specifications/lsp/3.18/language/publishDiagnostics.md",
    "chars": 3394,
    "preview": "#### <a href=\"#textDocument_publishDiagnostics\" name=\"textDocument_publishDiagnostics\" class=\"anchor\">PublishDiagnostics"
  },
  {
    "path": "_specifications/lsp/3.18/language/pullDiagnostics.md",
    "chars": 18148,
    "preview": "#### <a href=\"#textDocument_pullDiagnostics\" name=\"textDocument_pullDiagnostics\" class=\"anchor\">Pull Diagnostics</a>\n\nDi"
  },
  {
    "path": "_specifications/lsp/3.18/language/rangeFormatting.md",
    "chars": 3625,
    "preview": "#### <a href=\"#textDocument_rangeFormatting\" name=\"textDocument_rangeFormatting\" class=\"anchor\">Document Range Formattin"
  },
  {
    "path": "_specifications/lsp/3.18/language/references.md",
    "chars": 2275,
    "preview": "#### <a href=\"#textDocument_references\" name=\"textDocument_references\" class=\"anchor\">Find References Request (:leftward"
  },
  {
    "path": "_specifications/lsp/3.18/language/rename.md",
    "chars": 5063,
    "preview": "#### <a href=\"#textDocument_rename\" name=\"textDocument_rename\" class=\"anchor\">Rename Request (:leftwards_arrow_with_hook"
  },
  {
    "path": "_specifications/lsp/3.18/language/selectionRange.md",
    "chars": 3414,
    "preview": "#### <a href=\"#textDocument_selectionRange\" name=\"textDocument_selectionRange\" class=\"anchor\">Selection Range Request (:"
  },
  {
    "path": "_specifications/lsp/3.18/language/semanticTokens.md",
    "chars": 21340,
    "preview": "#### <a href=\"#textDocument_semanticTokens\" name=\"textDocument_semanticTokens\" class=\"anchor\">Semantic Tokens (:leftward"
  },
  {
    "path": "_specifications/lsp/3.18/language/signatureHelp.md",
    "chars": 9781,
    "preview": "#### <a href=\"#textDocument_signatureHelp\" name=\"textDocument_signatureHelp\" class=\"anchor\">Signature Help Request (:lef"
  },
  {
    "path": "_specifications/lsp/3.18/language/typeDefinition.md",
    "chars": 2775,
    "preview": "#### <a href=\"#textDocument_typeDefinition\" name=\"textDocument_typeDefinition\" class=\"anchor\">Go to Type Definition Requ"
  },
  {
    "path": "_specifications/lsp/3.18/language/typeHierarchy.md",
    "chars": 6168,
    "preview": "\n#### <a href=\"#textDocument_prepareTypeHierarchy\" name=\"textDocument_prepareTypeHierarchy\" class=\"anchor\">Prepare Type "
  },
  {
    "path": "_specifications/lsp/3.18/metaModel/metaModel.json",
    "chars": 434803,
    "preview": "{\n\t\"metaData\": {\n\t\t\"version\": \"3.18.0\"\n\t},\n\t\"requests\": [\n\t\t{\n\t\t\t\"method\": \"textDocument/implementation\",\n\t\t\t\"typeName\":"
  },
  {
    "path": "_specifications/lsp/3.18/metaModel/metaModel.schema.json",
    "chars": 24464,
    "preview": "{\n  \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n  \"definitions\": {\n    \"AndType\": {\n      \"additionalPropertie"
  },
  {
    "path": "_specifications/lsp/3.18/metaModel/metaModel.ts",
    "chars": 11559,
    "preview": "/* --------------------------------------------------------------------------------------------\n * Copyright (c) Microso"
  },
  {
    "path": "_specifications/lsp/3.18/notebookDocument/notebook.md",
    "chars": 18988,
    "preview": "### <a href=\"#notebookDocument_synchronization\" name=\"notebookDocument_synchronization\" class=\"anchor\">Notebook Document"
  },
  {
    "path": "_specifications/lsp/3.18/specification.md",
    "chars": 43846,
    "preview": "---\ntitle: Specification\nshortTitle: 3.18 (Upcoming)\nlayout: specifications\nsectionid: specification-3-18\ntoc: specifica"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/didChange.md",
    "chars": 4234,
    "preview": "#### <a href=\"#textDocument_didChange\" name=\"textDocument_didChange\" class=\"anchor\">DidChangeTextDocument Notification ("
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/didClose.md",
    "chars": 1420,
    "preview": "#### <a href=\"#textDocument_didClose\" name=\"textDocument_didClose\" class=\"anchor\">DidCloseTextDocument Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/didOpen.md",
    "chars": 1835,
    "preview": "#### <a href=\"#textDocument_didOpen\" name=\"textDocument_didOpen\" class=\"anchor\">DidOpenTextDocument Notification (:arrow"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/didRename.md",
    "chars": 708,
    "preview": "#### <a href=\"#textDocument_didRename\" name=\"textDocument_didRename\" class=\"anchor\">Renaming a document</a>\n\nDocument re"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/didSave.md",
    "chars": 1921,
    "preview": "#### <a href=\"#textDocument_didSave\" name=\"textDocument_didSave\" class=\"anchor\">DidSaveTextDocument Notification (:arrow"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/willSave.md",
    "chars": 2063,
    "preview": "#### <a href=\"#textDocument_willSave\" name=\"textDocument_willSave\" class=\"anchor\">WillSaveTextDocument Notification (:ar"
  },
  {
    "path": "_specifications/lsp/3.18/textDocument/willSaveWaitUntil.md",
    "chars": 1562,
    "preview": "#### <a href=\"#textDocument_willSaveWaitUntil\" name=\"textDocument_willSaveWaitUntil\" class=\"anchor\">WillSaveWaitUntilTex"
  },
  {
    "path": "_specifications/lsp/3.18/types/command.md",
    "chars": 852,
    "preview": "#### <a href=\"#command\" name=\"command\" class=\"anchor\">Command</a>\n\nRepresents a reference to a command. Provides a title"
  }
]

// ... and 48 more files (download for full content)

About this extraction

This page contains the full source code of the microsoft/language-server-protocol GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 248 files (2.7 MB), approximately 713.1k tokens, and a symbol index with 58 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!