├── .gitattributes ├── .gitignore ├── .vscode ├── settings.json ├── spellright.dict └── tasks.json ├── 404.html ├── Gemfile ├── Gemfile.lock ├── 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 │ ├── img │ │ ├── foldingRange.png │ │ ├── hover.png │ │ └── hoverResult.png │ └── overview.md └── lsp │ ├── img │ ├── language-server-sequence.png │ └── language-server.png │ └── overview.md ├── _specifications ├── base │ └── 0.9 │ │ └── specification.md ├── lsif │ ├── 0.4.0 │ │ ├── img │ │ │ ├── definitionResult.png │ │ │ ├── foldingRange.png │ │ │ ├── hoverResult.png │ │ │ ├── referenceResult.png │ │ │ └── resultSet.png │ │ ├── implementation.md │ │ └── specification.md │ ├── 0.5.0 │ │ ├── img │ │ │ ├── definitionResult.png │ │ │ ├── foldingRange.png │ │ │ ├── hoverResult.png │ │ │ ├── referenceResult.png │ │ │ └── resultSet.png │ │ ├── implementation.md │ │ └── specification.md │ └── 0.6.0 │ │ ├── img │ │ ├── definitionResult.png │ │ ├── foldingRange.png │ │ ├── hoverResult.png │ │ ├── referenceResult.png │ │ └── resultSet.png │ │ ├── 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 ├── bootswatch │ └── cosmo │ │ └── bootstrap.min.css ├── fontawesome-all.min.css └── main.scss ├── img ├── atom-css-code-complete.png ├── eclipse-css-code-complete.png ├── favicon.svg ├── microsoft-logo-inverted.png ├── microsoft-logo.png ├── vs-rust-code-complete.png ├── vscode-css-code-complete.png └── vscode-ps-hover.png ├── index.html ├── js └── page.js ├── resources └── notes.md └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/.vscode/spellright.dict -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /License-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/License-code.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/License.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/base-0-9-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/base-0-9-toc.yml -------------------------------------------------------------------------------- /_data/linkableTypes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/linkableTypes.yml -------------------------------------------------------------------------------- /_data/lsif-0-4-0-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/lsif-0-4-0-toc.yml -------------------------------------------------------------------------------- /_data/lsif-0-5-0-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/lsif-0-5-0-toc.yml -------------------------------------------------------------------------------- /_data/lsif-0-6-0-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/lsif-0-6-0-toc.yml -------------------------------------------------------------------------------- /_data/overviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/overviews.yml -------------------------------------------------------------------------------- /_data/specification-3-14-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specification-3-14-toc.yml -------------------------------------------------------------------------------- /_data/specification-3-15-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specification-3-15-toc.yml -------------------------------------------------------------------------------- /_data/specification-3-16-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specification-3-16-toc.yml -------------------------------------------------------------------------------- /_data/specification-3-17-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specification-3-17-toc.yml -------------------------------------------------------------------------------- /_data/specification-3-18-toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specification-3-18-toc.yml -------------------------------------------------------------------------------- /_data/specifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_data/specifications.yml -------------------------------------------------------------------------------- /_implementors/sdks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_implementors/sdks.md -------------------------------------------------------------------------------- /_implementors/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_implementors/servers.md -------------------------------------------------------------------------------- /_implementors/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_implementors/tools.md -------------------------------------------------------------------------------- /_implementors/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_implementors/utilities.md -------------------------------------------------------------------------------- /_includes/cookie_notice.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/js_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/js_files.html -------------------------------------------------------------------------------- /_includes/messages/3.17/exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/exit.md -------------------------------------------------------------------------------- /_includes/messages/3.17/initialized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/initialized.md -------------------------------------------------------------------------------- /_includes/messages/3.17/logMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/logMessage.md -------------------------------------------------------------------------------- /_includes/messages/3.17/logTrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/logTrace.md -------------------------------------------------------------------------------- /_includes/messages/3.17/registerCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/registerCapability.md -------------------------------------------------------------------------------- /_includes/messages/3.17/setTrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/setTrace.md -------------------------------------------------------------------------------- /_includes/messages/3.17/showMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/showMessage.md -------------------------------------------------------------------------------- /_includes/messages/3.17/showMessageRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/showMessageRequest.md -------------------------------------------------------------------------------- /_includes/messages/3.17/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/shutdown.md -------------------------------------------------------------------------------- /_includes/messages/3.17/telemetryEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/telemetryEvent.md -------------------------------------------------------------------------------- /_includes/messages/3.17/unregisterCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.17/unregisterCapability.md -------------------------------------------------------------------------------- /_includes/messages/3.18/exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/exit.md -------------------------------------------------------------------------------- /_includes/messages/3.18/initialized.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/initialized.md -------------------------------------------------------------------------------- /_includes/messages/3.18/logMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/logMessage.md -------------------------------------------------------------------------------- /_includes/messages/3.18/logTrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/logTrace.md -------------------------------------------------------------------------------- /_includes/messages/3.18/registerCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/registerCapability.md -------------------------------------------------------------------------------- /_includes/messages/3.18/setTrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/setTrace.md -------------------------------------------------------------------------------- /_includes/messages/3.18/showMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/showMessage.md -------------------------------------------------------------------------------- /_includes/messages/3.18/showMessageRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/showMessageRequest.md -------------------------------------------------------------------------------- /_includes/messages/3.18/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/shutdown.md -------------------------------------------------------------------------------- /_includes/messages/3.18/telemetryEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/telemetryEvent.md -------------------------------------------------------------------------------- /_includes/messages/3.18/unregisterCapability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/messages/3.18/unregisterCapability.md -------------------------------------------------------------------------------- /_includes/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/topnav.html -------------------------------------------------------------------------------- /_includes/types/enumerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/types/enumerations.md -------------------------------------------------------------------------------- /_includes/types/traceValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/types/traceValue.md -------------------------------------------------------------------------------- /_includes/types/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_includes/types/uri.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/implementors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/implementors.html -------------------------------------------------------------------------------- /_layouts/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/overview.html -------------------------------------------------------------------------------- /_layouts/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/redirect.html -------------------------------------------------------------------------------- /_layouts/singlePage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/singlePage.html -------------------------------------------------------------------------------- /_layouts/specifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_layouts/specifications.html -------------------------------------------------------------------------------- /_overviews/lsif/img/foldingRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsif/img/foldingRange.png -------------------------------------------------------------------------------- /_overviews/lsif/img/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsif/img/hover.png -------------------------------------------------------------------------------- /_overviews/lsif/img/hoverResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsif/img/hoverResult.png -------------------------------------------------------------------------------- /_overviews/lsif/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsif/overview.md -------------------------------------------------------------------------------- /_overviews/lsp/img/language-server-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsp/img/language-server-sequence.png -------------------------------------------------------------------------------- /_overviews/lsp/img/language-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsp/img/language-server.png -------------------------------------------------------------------------------- /_overviews/lsp/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_overviews/lsp/overview.md -------------------------------------------------------------------------------- /_specifications/base/0.9/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/base/0.9/specification.md -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/img/definitionResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/img/definitionResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/img/foldingRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/img/foldingRange.png -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/img/hoverResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/img/hoverResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/img/referenceResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/img/referenceResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/img/resultSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/img/resultSet.png -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/implementation.md -------------------------------------------------------------------------------- /_specifications/lsif/0.4.0/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.4.0/specification.md -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/img/definitionResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/img/definitionResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/img/foldingRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/img/foldingRange.png -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/img/hoverResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/img/hoverResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/img/referenceResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/img/referenceResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/img/resultSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/img/resultSet.png -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/implementation.md -------------------------------------------------------------------------------- /_specifications/lsif/0.5.0/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.5.0/specification.md -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/img/definitionResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/img/definitionResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/img/foldingRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/img/foldingRange.png -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/img/hoverResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/img/hoverResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/img/referenceResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/img/referenceResult.png -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/img/resultSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/img/resultSet.png -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/implementation.md -------------------------------------------------------------------------------- /_specifications/lsif/0.6.0/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsif/0.6.0/specification.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/general/initialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/general/initialize.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/callHierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/callHierarchy.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/codeAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/codeAction.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/codeLens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/codeLens.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/colorPresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/colorPresentation.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/completion.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/declaration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/definition.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/documentColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/documentColor.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/documentHighlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/documentHighlight.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/documentLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/documentLink.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/documentSymbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/documentSymbol.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/foldingRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/foldingRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/formatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/hover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/hover.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/implementation.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/inlayHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/inlayHint.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/inlineValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/inlineValue.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/linkedEditingRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/linkedEditingRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/moniker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/moniker.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/onTypeFormatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/onTypeFormatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/publishDiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/publishDiagnostics.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/pullDiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/pullDiagnostics.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/rangeFormatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/rangeFormatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/references.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/rename.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/selectionRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/selectionRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/semanticTokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/semanticTokens.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/signatureHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/signatureHelp.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/typeDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/typeDefinition.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/language/typeHierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/language/typeHierarchy.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/metaModel/metaModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/metaModel/metaModel.json -------------------------------------------------------------------------------- /_specifications/lsp/3.17/metaModel/metaModel.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/metaModel/metaModel.schema.json -------------------------------------------------------------------------------- /_specifications/lsp/3.17/metaModel/metaModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/metaModel/metaModel.ts -------------------------------------------------------------------------------- /_specifications/lsp/3.17/notebookDocument/notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/notebookDocument/notebook.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/specification.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/didChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/didChange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/didClose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/didClose.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/didOpen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/didOpen.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/didRename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/didRename.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/didSave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/didSave.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/willSave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/willSave.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/textDocument/willSaveWaitUntil.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/command.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/diagnostic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/diagnostic.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/documentFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/documentFilter.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/location.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/locationLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/locationLink.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/markupContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/markupContent.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/partialResultParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/partialResultParams.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/partialResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/partialResults.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/position.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/range.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/regexp.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/resourceChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/resourceChanges.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textDocumentEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textDocumentEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textDocumentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textDocumentIdentifier.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textDocumentItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textDocumentItem.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textDocumentPositionParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textDocumentPositionParams.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textDocuments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textDocuments.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/textEditArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/textEditArray.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/versionedTextDocumentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/versionedTextDocumentIdentifier.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/workDoneProgress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/workDoneProgress.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/types/workspaceEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/types/workspaceEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/window/showDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/window/showDocument.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/window/workDoneProgressCancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/window/workDoneProgressCancel.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/window/workDoneProgressCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/window/workDoneProgressCreate.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/applyEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/applyEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/configuration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didChangeConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didChangeConfiguration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didChangeWatchedFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didChangeWorkspaceFolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didChangeWorkspaceFolders.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didCreateFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didCreateFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didDeleteFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didDeleteFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/didRenameFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/didRenameFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/executeCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/executeCommand.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/symbol.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/willCreateFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/willCreateFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/willDeleteFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/willDeleteFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/willRenameFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/willRenameFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.17/workspace/workspaceFolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.17/workspace/workspaceFolders.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/general/initialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/general/initialize.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/callHierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/callHierarchy.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/codeAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/codeAction.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/codeLens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/codeLens.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/colorPresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/colorPresentation.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/completion.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/declaration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/definition.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/documentColor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/documentColor.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/documentHighlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/documentHighlight.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/documentLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/documentLink.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/documentSymbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/documentSymbol.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/foldingRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/foldingRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/formatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/hover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/hover.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/implementation.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/inlayHint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/inlayHint.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/inlineCompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/inlineCompletion.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/inlineValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/inlineValue.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/linkedEditingRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/linkedEditingRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/moniker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/moniker.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/onTypeFormatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/onTypeFormatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/publishDiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/publishDiagnostics.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/pullDiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/pullDiagnostics.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/rangeFormatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/rangeFormatting.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/references.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/rename.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/selectionRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/selectionRange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/semanticTokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/semanticTokens.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/signatureHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/signatureHelp.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/typeDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/typeDefinition.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/language/typeHierarchy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/language/typeHierarchy.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/metaModel/metaModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/metaModel/metaModel.json -------------------------------------------------------------------------------- /_specifications/lsp/3.18/metaModel/metaModel.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/metaModel/metaModel.schema.json -------------------------------------------------------------------------------- /_specifications/lsp/3.18/metaModel/metaModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/metaModel/metaModel.ts -------------------------------------------------------------------------------- /_specifications/lsp/3.18/notebookDocument/notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/notebookDocument/notebook.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/specification.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/didChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/didChange.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/didClose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/didClose.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/didOpen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/didOpen.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/didRename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/didRename.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/didSave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/didSave.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/willSave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/willSave.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/textDocument/willSaveWaitUntil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/textDocument/willSaveWaitUntil.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/command.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/diagnostic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/diagnostic.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/documentFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/documentFilter.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/location.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/locationLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/locationLink.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/markupContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/markupContent.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/partialResultParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/partialResultParams.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/partialResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/partialResults.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/patterns.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/position.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/range.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/regexp.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/resourceChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/resourceChanges.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/stringValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/stringValue.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textDocumentEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textDocumentEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textDocumentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textDocumentIdentifier.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textDocumentItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textDocumentItem.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textDocumentPositionParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textDocumentPositionParams.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textDocuments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textDocuments.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/textEditArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/textEditArray.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/versionedTextDocumentIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/versionedTextDocumentIdentifier.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/workDoneProgress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/workDoneProgress.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/types/workspaceEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/types/workspaceEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/window/showDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/window/showDocument.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/window/workDoneProgressCancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/window/workDoneProgressCancel.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/window/workDoneProgressCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/window/workDoneProgressCreate.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/applyEdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/applyEdit.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/configuration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didChangeConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didChangeConfiguration.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didChangeWatchedFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didChangeWorkspaceFolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didChangeWorkspaceFolders.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didCreateFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didCreateFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didDeleteFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didDeleteFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/didRenameFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/didRenameFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/executeCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/executeCommand.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/symbol.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/textDocumentContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/textDocumentContent.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/willCreateFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/willCreateFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/willDeleteFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/willDeleteFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/willRenameFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/willRenameFiles.md -------------------------------------------------------------------------------- /_specifications/lsp/3.18/workspace/workspaceFolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/lsp/3.18/workspace/workspaceFolders.md -------------------------------------------------------------------------------- /_specifications/specification-3-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/specification-3-14.md -------------------------------------------------------------------------------- /_specifications/specification-3-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/specification-3-15.md -------------------------------------------------------------------------------- /_specifications/specification-3-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/_specifications/specification-3-16.md -------------------------------------------------------------------------------- /css/bootswatch/cosmo/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/css/bootswatch/cosmo/bootstrap.min.css -------------------------------------------------------------------------------- /css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/css/main.scss -------------------------------------------------------------------------------- /img/atom-css-code-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/atom-css-code-complete.png -------------------------------------------------------------------------------- /img/eclipse-css-code-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/eclipse-css-code-complete.png -------------------------------------------------------------------------------- /img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/favicon.svg -------------------------------------------------------------------------------- /img/microsoft-logo-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/microsoft-logo-inverted.png -------------------------------------------------------------------------------- /img/microsoft-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/microsoft-logo.png -------------------------------------------------------------------------------- /img/vs-rust-code-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/vs-rust-code-complete.png -------------------------------------------------------------------------------- /img/vscode-css-code-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/vscode-css-code-complete.png -------------------------------------------------------------------------------- /img/vscode-ps-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/img/vscode-ps-hover.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/index.html -------------------------------------------------------------------------------- /js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/js/page.js -------------------------------------------------------------------------------- /resources/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/resources/notes.md -------------------------------------------------------------------------------- /webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/language-server-protocol/HEAD/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------