local LSP = {} ---@enum cmp_dictionary.kit.LSP.SemanticTokenTypes LSP.SemanticTokenTypes = { namespace = 'namespace', type = 'type', class = 'class', enum = 'enum', interface = 'interface', struct = 'struct', typeParameter = 'typeParameter', parameter = 'parameter', variable = 'variable', property = 'property', enumMember = 'enumMember', event = 'event', ['function'] = 'function', method = 'method', macro = 'macro', keyword = 'keyword', modifier = 'modifier', comment = 'comment', string = 'string', number = 'number', regexp = 'regexp', operator = 'operator', decorator = 'decorator', } ---@enum cmp_dictionary.kit.LSP.SemanticTokenModifiers LSP.SemanticTokenModifiers = { declaration = 'declaration', definition = 'definition', readonly = 'readonly', static = 'static', deprecated = 'deprecated', abstract = 'abstract', async = 'async', modification = 'modification', documentation = 'documentation', defaultLibrary = 'defaultLibrary', } ---@enum cmp_dictionary.kit.LSP.DocumentDiagnosticReportKind LSP.DocumentDiagnosticReportKind = { Full = 'full', Unchanged = 'unchanged', } ---@enum cmp_dictionary.kit.LSP.ErrorCodes LSP.ErrorCodes = { ParseError = -32700, InvalidRequest = -32600, MethodNotFound = -32601, InvalidParams = -32602, InternalError = -32603, ServerNotInitialized = -32002, UnknownErrorCode = -32001, } ---@enum cmp_dictionary.kit.LSP.LSPErrorCodes LSP.LSPErrorCodes = { RequestFailed = -32803, ServerCancelled = -32802, ContentModified = -32801, RequestCancelled = -32800, } ---@enum cmp_dictionary.kit.LSP.FoldingRangeKind LSP.FoldingRangeKind = { Comment = 'comment', Imports = 'imports', Region = 'region', } ---@enum cmp_dictionary.kit.LSP.SymbolKind LSP.SymbolKind = { File = 1, Module = 2, Namespace = 3, Package = 4, Class = 5, Method = 6, Property = 7, Field = 8, Constructor = 9, Enum = 10, Interface = 11, Function = 12, Variable = 13, Constant = 14, String = 15, Number = 16, Boolean = 17, Array = 18, Object = 19, Key = 20, Null = 21, EnumMember = 22, Struct = 23, Event = 24, Operator = 25, TypeParameter = 26, } ---@enum cmp_dictionary.kit.LSP.SymbolTag LSP.SymbolTag = { Deprecated = 1, } ---@enum cmp_dictionary.kit.LSP.UniquenessLevel LSP.UniquenessLevel = { document = 'document', project = 'project', group = 'group', scheme = 'scheme', global = 'global', } ---@enum cmp_dictionary.kit.LSP.MonikerKind LSP.MonikerKind = { import = 'import', export = 'export', ['local'] = 'local', } ---@enum cmp_dictionary.kit.LSP.InlayHintKind LSP.InlayHintKind = { Type = 1, Parameter = 2, } ---@enum cmp_dictionary.kit.LSP.MessageType LSP.MessageType = { Error = 1, Warning = 2, Info = 3, Log = 4, } ---@enum cmp_dictionary.kit.LSP.TextDocumentSyncKind LSP.TextDocumentSyncKind = { None = 0, Full = 1, Incremental = 2, } ---@enum cmp_dictionary.kit.LSP.TextDocumentSaveReason LSP.TextDocumentSaveReason = { Manual = 1, AfterDelay = 2, FocusOut = 3, } ---@enum cmp_dictionary.kit.LSP.CompletionItemKind LSP.CompletionItemKind = { Text = 1, Method = 2, Function = 3, Constructor = 4, Field = 5, Variable = 6, Class = 7, Interface = 8, Module = 9, Property = 10, Unit = 11, Value = 12, Enum = 13, Keyword = 14, Snippet = 15, Color = 16, File = 17, Reference = 18, Folder = 19, EnumMember = 20, Constant = 21, Struct = 22, Event = 23, Operator = 24, TypeParameter = 25, } ---@enum cmp_dictionary.kit.LSP.CompletionItemTag LSP.CompletionItemTag = { Deprecated = 1, } ---@enum cmp_dictionary.kit.LSP.InsertTextFormat LSP.InsertTextFormat = { PlainText = 1, Snippet = 2, } ---@enum cmp_dictionary.kit.LSP.InsertTextMode LSP.InsertTextMode = { asIs = 1, adjustIndentation = 2, } ---@enum cmp_dictionary.kit.LSP.DocumentHighlightKind LSP.DocumentHighlightKind = { Text = 1, Read = 2, Write = 3, } ---@enum cmp_dictionary.kit.LSP.CodeActionKind LSP.CodeActionKind = { Empty = '', QuickFix = 'quickfix', Refactor = 'refactor', RefactorExtract = 'refactor.extract', RefactorInline = 'refactor.inline', RefactorRewrite = 'refactor.rewrite', Source = 'source', SourceOrganizeImports = 'source.organizeImports', SourceFixAll = 'source.fixAll', } ---@enum cmp_dictionary.kit.LSP.TraceValues LSP.TraceValues = { Off = 'off', Messages = 'messages', Verbose = 'verbose', } ---@enum cmp_dictionary.kit.LSP.MarkupKind LSP.MarkupKind = { PlainText = 'plaintext', Markdown = 'markdown', } ---@enum cmp_dictionary.kit.LSP.PositionEncodingKind LSP.PositionEncodingKind = { UTF8 = 'utf-8', UTF16 = 'utf-16', UTF32 = 'utf-32', } ---@enum cmp_dictionary.kit.LSP.FileChangeType LSP.FileChangeType = { Created = 1, Changed = 2, Deleted = 3, } ---@enum cmp_dictionary.kit.LSP.WatchKind LSP.WatchKind = { Create = 1, Change = 2, Delete = 4, } ---@enum cmp_dictionary.kit.LSP.DiagnosticSeverity LSP.DiagnosticSeverity = { Error = 1, Warning = 2, Information = 3, Hint = 4, } ---@enum cmp_dictionary.kit.LSP.DiagnosticTag LSP.DiagnosticTag = { Unnecessary = 1, Deprecated = 2, } ---@enum cmp_dictionary.kit.LSP.CompletionTriggerKind LSP.CompletionTriggerKind = { Invoked = 1, TriggerCharacter = 2, TriggerForIncompleteCompletions = 3, } ---@enum cmp_dictionary.kit.LSP.SignatureHelpTriggerKind LSP.SignatureHelpTriggerKind = { Invoked = 1, TriggerCharacter = 2, ContentChange = 3, } ---@enum cmp_dictionary.kit.LSP.CodeActionTriggerKind LSP.CodeActionTriggerKind = { Invoked = 1, Automatic = 2, } ---@enum cmp_dictionary.kit.LSP.FileOperationPatternKind LSP.FileOperationPatternKind = { file = 'file', folder = 'folder', } ---@enum cmp_dictionary.kit.LSP.NotebookCellKind LSP.NotebookCellKind = { Markup = 1, Code = 2, } ---@enum cmp_dictionary.kit.LSP.ResourceOperationKind LSP.ResourceOperationKind = { Create = 'create', Rename = 'rename', Delete = 'delete', } ---@enum cmp_dictionary.kit.LSP.FailureHandlingKind LSP.FailureHandlingKind = { Abort = 'abort', Transactional = 'transactional', TextOnlyTransactional = 'textOnlyTransactional', Undo = 'undo', } ---@enum cmp_dictionary.kit.LSP.PrepareSupportDefaultBehavior LSP.PrepareSupportDefaultBehavior = { Identifier = 1, } ---@enum cmp_dictionary.kit.LSP.TokenFormat LSP.TokenFormat = { Relative = 'relative', } ---@class cmp_dictionary.kit.LSP.ImplementationParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.Location ---@field public uri string ---@field public range cmp_dictionary.kit.LSP.Range ---@class cmp_dictionary.kit.LSP.ImplementationRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.ImplementationOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.TypeDefinitionParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.TypeDefinitionRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.TypeDefinitionOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.WorkspaceFolder ---@field public uri string The associated URI for this workspace folder. ---@field public name string The name of the workspace folder. Used to refer to this
workspace folder in the user interface. ---@class cmp_dictionary.kit.LSP.DidChangeWorkspaceFoldersParams ---@field public event cmp_dictionary.kit.LSP.WorkspaceFoldersChangeEvent The actual workspace folder change event. ---@class cmp_dictionary.kit.LSP.ConfigurationParams ---@field public items cmp_dictionary.kit.LSP.ConfigurationItem[] ---@class cmp_dictionary.kit.LSP.PartialResultParams ---@field public partialResultToken? cmp_dictionary.kit.LSP.ProgressToken An optional token that a server can use to report partial results (e.g. streaming) to
the client. ---@class cmp_dictionary.kit.LSP.DocumentColorParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@class cmp_dictionary.kit.LSP.ColorInformation ---@field public range cmp_dictionary.kit.LSP.Range The range in the document where this color appears. ---@field public color cmp_dictionary.kit.LSP.Color The actual color value for this color range. ---@class cmp_dictionary.kit.LSP.DocumentColorRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentColorOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.ColorPresentationParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public color cmp_dictionary.kit.LSP.Color The color to request presentations for. ---@field public range cmp_dictionary.kit.LSP.Range The range where the color would be inserted. Serves as a context. ---@class cmp_dictionary.kit.LSP.ColorPresentation ---@field public label string The label of this color presentation. It will be shown on the color
picker header. By default this is also the text that is inserted when selecting
this color presentation. ---@field public textEdit? cmp_dictionary.kit.LSP.TextEdit An [edit](#TextEdit) which is applied to a document when selecting
this presentation for the color. When `falsy` the [label](#ColorPresentation.label)
is used. ---@field public additionalTextEdits? cmp_dictionary.kit.LSP.TextEdit[] An optional array of additional [text edits](#TextEdit) that are applied when
selecting this color presentation. Edits must not overlap with the main [edit](#ColorPresentation.textEdit) nor with themselves. ---@class cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public workDoneProgress? boolean ---@class cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions ---@field public documentSelector (cmp_dictionary.kit.LSP.DocumentSelector | nil) A document selector to identify the scope of the registration. If set to null
the document selector provided on the client side will be used. ---@class cmp_dictionary.kit.LSP.FoldingRangeParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@class cmp_dictionary.kit.LSP.FoldingRange ---@field public startLine integer The zero-based start line of the range to fold. The folded area starts after the line's last character.
To be valid, the end must be zero or larger and smaller than the number of lines in the document. ---@field public startCharacter? integer The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line. ---@field public endLine integer The zero-based end line of the range to fold. The folded area ends with the line's last character.
To be valid, the end must be zero or larger and smaller than the number of lines in the document. ---@field public endCharacter? integer The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line. ---@field public kind? cmp_dictionary.kit.LSP.FoldingRangeKind Describes the kind of the folding range such as `comment' or 'region'. The kind
is used to categorize folding ranges and used by commands like 'Fold all comments'.
See [FoldingRangeKind](#FoldingRangeKind) for an enumeration of standardized kinds. ---@field public collapsedText? string The text that the client should show when the specified range is
collapsed. If not defined or not supported by the client, a default
will be chosen by the client.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.FoldingRangeRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.FoldingRangeOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.DeclarationParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.DeclarationRegistrationOptions : cmp_dictionary.kit.LSP.DeclarationOptions, cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.SelectionRangeParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public positions cmp_dictionary.kit.LSP.Position[] The positions inside the text document. ---@class cmp_dictionary.kit.LSP.SelectionRange ---@field public range cmp_dictionary.kit.LSP.Range The [range](#Range) of this selection range. ---@field public parent? cmp_dictionary.kit.LSP.SelectionRange The parent selection range containing this range. Therefore `parent.range` must contain `this.range`. ---@class cmp_dictionary.kit.LSP.SelectionRangeRegistrationOptions : cmp_dictionary.kit.LSP.SelectionRangeOptions, cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.WorkDoneProgressCreateParams ---@field public token cmp_dictionary.kit.LSP.ProgressToken The token to be used to report progress. ---@class cmp_dictionary.kit.LSP.WorkDoneProgressCancelParams ---@field public token cmp_dictionary.kit.LSP.ProgressToken The token to be used to report progress. ---@class cmp_dictionary.kit.LSP.CallHierarchyPrepareParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@class cmp_dictionary.kit.LSP.CallHierarchyItem ---@field public name string The name of this item. ---@field public kind cmp_dictionary.kit.LSP.SymbolKind The kind of this item. ---@field public tags? cmp_dictionary.kit.LSP.SymbolTag[] Tags for this item. ---@field public detail? string More detail for this item, e.g. the signature of a function. ---@field public uri string The resource identifier of this item. ---@field public range cmp_dictionary.kit.LSP.Range The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code. ---@field public selectionRange cmp_dictionary.kit.LSP.Range The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.
Must be contained by the [`range`](#CallHierarchyItem.range). ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved between a call hierarchy prepare and
incoming calls or outgoing calls requests. ---@class cmp_dictionary.kit.LSP.CallHierarchyRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.CallHierarchyOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.CallHierarchyIncomingCallsParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public item cmp_dictionary.kit.LSP.CallHierarchyItem ---@class cmp_dictionary.kit.LSP.CallHierarchyIncomingCall ---@field public from cmp_dictionary.kit.LSP.CallHierarchyItem The item that makes the call. ---@field public fromRanges cmp_dictionary.kit.LSP.Range[] The ranges at which the calls appear. This is relative to the caller
denoted by [`this.from`](#CallHierarchyIncomingCall.from). ---@class cmp_dictionary.kit.LSP.CallHierarchyOutgoingCallsParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public item cmp_dictionary.kit.LSP.CallHierarchyItem ---@class cmp_dictionary.kit.LSP.CallHierarchyOutgoingCall ---@field public to cmp_dictionary.kit.LSP.CallHierarchyItem The item that is called. ---@field public fromRanges cmp_dictionary.kit.LSP.Range[] The range at which this item is called. This is the range relative to the caller, e.g the item
passed to [`provideCallHierarchyOutgoingCalls`](#CallHierarchyItemProvider.provideCallHierarchyOutgoingCalls)
and not [`this.to`](#CallHierarchyOutgoingCall.to). ---@class cmp_dictionary.kit.LSP.SemanticTokensParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@class cmp_dictionary.kit.LSP.SemanticTokens ---@field public resultId? string An optional result id. If provided and clients support delta updating
the client will include the result id in the next semantic token request.
A server can then instead of computing all semantic tokens again simply
send a delta. ---@field public data integer[] The actual tokens. ---@class cmp_dictionary.kit.LSP.SemanticTokensPartialResult ---@field public data integer[] ---@class cmp_dictionary.kit.LSP.SemanticTokensRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.SemanticTokensOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.SemanticTokensDeltaParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public previousResultId string The result id of a previous response. The result Id can either point to a full response
or a delta response depending on what was received last. ---@class cmp_dictionary.kit.LSP.SemanticTokensDelta ---@field public resultId? string ---@field public edits cmp_dictionary.kit.LSP.SemanticTokensEdit[] The semantic token edits to transform a previous result into a new result. ---@class cmp_dictionary.kit.LSP.SemanticTokensDeltaPartialResult ---@field public edits cmp_dictionary.kit.LSP.SemanticTokensEdit[] ---@class cmp_dictionary.kit.LSP.SemanticTokensRangeParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public range cmp_dictionary.kit.LSP.Range The range the semantic tokens are requested for. ---@class cmp_dictionary.kit.LSP.ShowDocumentParams ---@field public uri string The document uri to show. ---@field public external? boolean Indicates to show the resource in an external program.
To show for example `https://code.visualstudio.com/`
in the default WEB browser set `external` to `true`. ---@field public takeFocus? boolean An optional property to indicate whether the editor
showing the document should take focus or not.
Clients might ignore this property if an external
program is started. ---@field public selection? cmp_dictionary.kit.LSP.Range An optional selection range if the document is a text
document. Clients might ignore the property if an
external program is started or the file is not a text
file. ---@class cmp_dictionary.kit.LSP.ShowDocumentResult ---@field public success boolean A boolean indicating if the show was successful. ---@class cmp_dictionary.kit.LSP.LinkedEditingRangeParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@class cmp_dictionary.kit.LSP.LinkedEditingRanges ---@field public ranges cmp_dictionary.kit.LSP.Range[] A list of ranges that can be edited together. The ranges must have
identical length and contain identical text content. The ranges cannot overlap. ---@field public wordPattern? string An optional word pattern (regular expression) that describes valid contents for
the given ranges. If no pattern is provided, the client configuration's word
pattern will be used. ---@class cmp_dictionary.kit.LSP.LinkedEditingRangeRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.LinkedEditingRangeOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.CreateFilesParams ---@field public files cmp_dictionary.kit.LSP.FileCreate[] An array of all files/folders created in this operation. ---@class cmp_dictionary.kit.LSP.WorkspaceEdit ---@field public changes? table Holds changes to existing resources. ---@field public documentChanges? (cmp_dictionary.kit.LSP.TextDocumentEdit | cmp_dictionary.kit.LSP.CreateFile | cmp_dictionary.kit.LSP.RenameFile | cmp_dictionary.kit.LSP.DeleteFile)[] Depending on the client capability `workspace.workspaceEdit.resourceOperations` document changes
are either an array of `TextDocumentEdit`s to express changes to n different text documents
where each text document edit addresses a specific version of a text document. Or it can contain
above `TextDocumentEdit`s mixed with create, rename and delete file / folder operations.

Whether a client supports versioned document edits is expressed via
`workspace.workspaceEdit.documentChanges` client capability.

If a client neither supports `documentChanges` nor `workspace.workspaceEdit.resourceOperations` then
only plain `TextEdit`s using the `changes` property are supported. ---@field public changeAnnotations? table A map of change annotations that can be referenced in `AnnotatedTextEdit`s or create, rename and
delete file / folder operations.

Whether clients honor this property depends on the client capability `workspace.changeAnnotationSupport`.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.FileOperationRegistrationOptions ---@field public filters cmp_dictionary.kit.LSP.FileOperationFilter[] The actual filters. ---@class cmp_dictionary.kit.LSP.RenameFilesParams ---@field public files cmp_dictionary.kit.LSP.FileRename[] An array of all files/folders renamed in this operation. When a folder is renamed, only
the folder will be included, and not its children. ---@class cmp_dictionary.kit.LSP.DeleteFilesParams ---@field public files cmp_dictionary.kit.LSP.FileDelete[] An array of all files/folders deleted in this operation. ---@class cmp_dictionary.kit.LSP.MonikerParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.Moniker ---@field public scheme string The scheme of the moniker. For example tsc or .Net ---@field public identifier string The identifier of the moniker. The value is opaque in LSIF however
schema owners are allowed to define the structure if they want. ---@field public unique cmp_dictionary.kit.LSP.UniquenessLevel The scope in which the moniker is unique ---@field public kind? cmp_dictionary.kit.LSP.MonikerKind The moniker kind if known. ---@class cmp_dictionary.kit.LSP.MonikerRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.MonikerOptions ---@class cmp_dictionary.kit.LSP.TypeHierarchyPrepareParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@class cmp_dictionary.kit.LSP.TypeHierarchyItem ---@field public name string The name of this item. ---@field public kind cmp_dictionary.kit.LSP.SymbolKind The kind of this item. ---@field public tags? cmp_dictionary.kit.LSP.SymbolTag[] Tags for this item. ---@field public detail? string More detail for this item, e.g. the signature of a function. ---@field public uri string The resource identifier of this item. ---@field public range cmp_dictionary.kit.LSP.Range The range enclosing this symbol not including leading/trailing whitespace
but everything else, e.g. comments and code. ---@field public selectionRange cmp_dictionary.kit.LSP.Range The range that should be selected and revealed when this symbol is being
picked, e.g. the name of a function. Must be contained by the
[`range`](#TypeHierarchyItem.range). ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved between a type hierarchy prepare and
supertypes or subtypes requests. It could also be used to identify the
type hierarchy in the server, helping improve the performance on
resolving supertypes and subtypes. ---@class cmp_dictionary.kit.LSP.TypeHierarchyRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.TypeHierarchyOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.TypeHierarchySupertypesParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public item cmp_dictionary.kit.LSP.TypeHierarchyItem ---@class cmp_dictionary.kit.LSP.TypeHierarchySubtypesParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public item cmp_dictionary.kit.LSP.TypeHierarchyItem ---@class cmp_dictionary.kit.LSP.InlineValueParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public range cmp_dictionary.kit.LSP.Range The document range for which inline values should be computed. ---@field public context cmp_dictionary.kit.LSP.InlineValueContext Additional information about the context in which inline values were
requested. ---@class cmp_dictionary.kit.LSP.InlineValueRegistrationOptions : cmp_dictionary.kit.LSP.InlineValueOptions, cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.InlayHintParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public range cmp_dictionary.kit.LSP.Range The document range for which inlay hints should be computed. ---@class cmp_dictionary.kit.LSP.InlayHint ---@field public position cmp_dictionary.kit.LSP.Position The position of this hint. ---@field public label (string | cmp_dictionary.kit.LSP.InlayHintLabelPart[]) The label of this hint. A human readable string or an array of
InlayHintLabelPart label parts.

*Note* that neither the string nor the label part can be empty. ---@field public kind? cmp_dictionary.kit.LSP.InlayHintKind The kind of this hint. Can be omitted in which case the client
should fall back to a reasonable default. ---@field public textEdits? cmp_dictionary.kit.LSP.TextEdit[] Optional text edits that are performed when accepting this inlay hint.

*Note* that edits are expected to change the document so that the inlay
hint (or its nearest variant) is now part of the document and the inlay
hint itself is now obsolete. ---@field public tooltip? (string | cmp_dictionary.kit.LSP.MarkupContent) The tooltip text when you hover over this item. ---@field public paddingLeft? boolean Render padding before the hint.

Note: Padding should use the editor's background color, not the
background color of the hint itself. That means padding can be used
to visually align/separate an inlay hint. ---@field public paddingRight? boolean Render padding after the hint.

Note: Padding should use the editor's background color, not the
background color of the hint itself. That means padding can be used
to visually align/separate an inlay hint. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on an inlay hint between
a `textDocument/inlayHint` and a `inlayHint/resolve` request. ---@class cmp_dictionary.kit.LSP.InlayHintRegistrationOptions : cmp_dictionary.kit.LSP.InlayHintOptions, cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.DocumentDiagnosticParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public identifier? string The additional identifier provided during registration. ---@field public previousResultId? string The result id of a previous response if provided. ---@class cmp_dictionary.kit.LSP.DocumentDiagnosticReportPartialResult ---@field public relatedDocuments table ---@class cmp_dictionary.kit.LSP.DiagnosticServerCancellationData ---@field public retriggerRequest boolean ---@class cmp_dictionary.kit.LSP.DiagnosticRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DiagnosticOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.WorkspaceDiagnosticParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public identifier? string The additional identifier provided during registration. ---@field public previousResultIds cmp_dictionary.kit.LSP.PreviousResultId[] The currently known diagnostic reports with their
previous result ids. ---@class cmp_dictionary.kit.LSP.WorkspaceDiagnosticReport ---@field public items cmp_dictionary.kit.LSP.WorkspaceDocumentDiagnosticReport[] ---@class cmp_dictionary.kit.LSP.WorkspaceDiagnosticReportPartialResult ---@field public items cmp_dictionary.kit.LSP.WorkspaceDocumentDiagnosticReport[] ---@class cmp_dictionary.kit.LSP.DidOpenNotebookDocumentParams ---@field public notebookDocument cmp_dictionary.kit.LSP.NotebookDocument The notebook document that got opened. ---@field public cellTextDocuments cmp_dictionary.kit.LSP.TextDocumentItem[] The text documents that represent the content
of a notebook cell. ---@class cmp_dictionary.kit.LSP.DidChangeNotebookDocumentParams ---@field public notebookDocument cmp_dictionary.kit.LSP.VersionedNotebookDocumentIdentifier The notebook document that did change. The version number points
to the version after all provided changes have been applied. If
only the text document content of a cell changes the notebook version
doesn't necessarily have to change. ---@field public change cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent The actual changes to the notebook document.

The changes describe single state changes to the notebook document.
So if there are two changes c1 (at array index 0) and c2 (at array
index 1) for a notebook in state S then c1 moves the notebook from
S to S' and c2 from S' to S''. So c1 is computed on the state S and
c2 is computed on the state S'.

To mirror the content of a notebook using change events use the following approach:
- start with the same initial content
- apply the 'notebookDocument/didChange' notifications in the order you receive them.
- apply the `NotebookChangeEvent`s in a single notification in the order
you receive them. ---@class cmp_dictionary.kit.LSP.DidSaveNotebookDocumentParams ---@field public notebookDocument cmp_dictionary.kit.LSP.NotebookDocumentIdentifier The notebook document that got saved. ---@class cmp_dictionary.kit.LSP.DidCloseNotebookDocumentParams ---@field public notebookDocument cmp_dictionary.kit.LSP.NotebookDocumentIdentifier The notebook document that got closed. ---@field public cellTextDocuments cmp_dictionary.kit.LSP.TextDocumentIdentifier[] The text documents that represent the content
of a notebook cell that got closed. ---@class cmp_dictionary.kit.LSP.RegistrationParams ---@field public registrations cmp_dictionary.kit.LSP.Registration[] ---@class cmp_dictionary.kit.LSP.UnregistrationParams ---@field public unregisterations cmp_dictionary.kit.LSP.Unregistration[] ---@class cmp_dictionary.kit.LSP.InitializeParams : cmp_dictionary.kit.LSP._InitializeParams, cmp_dictionary.kit.LSP.WorkspaceFoldersInitializeParams ---@class cmp_dictionary.kit.LSP.InitializeResult ---@field public capabilities cmp_dictionary.kit.LSP.ServerCapabilities The capabilities the language server provides. ---@field public serverInfo? cmp_dictionary.kit.LSP.InitializeResult.serverInfo Information about the server.

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.InitializeResult.serverInfo ---@field public name string The name of the server as defined by the server. ---@field public version? string The server's version as defined by the server. ---@class cmp_dictionary.kit.LSP.InitializeError ---@field public retry boolean Indicates whether the client execute the following retry logic:
(1) show the message provided by the ResponseError to the user
(2) user selects retry or cancel
(3) if user selected retry the initialize method is sent again. ---@class cmp_dictionary.kit.LSP.InitializedParams ---@class cmp_dictionary.kit.LSP.DidChangeConfigurationParams ---@field public settings cmp_dictionary.kit.LSP.LSPAny The actual changed settings ---@class cmp_dictionary.kit.LSP.DidChangeConfigurationRegistrationOptions ---@field public section? (string | string[]) ---@class cmp_dictionary.kit.LSP.ShowMessageParams ---@field public type cmp_dictionary.kit.LSP.MessageType The message type. See {@link MessageType} ---@field public message string The actual message. ---@class cmp_dictionary.kit.LSP.ShowMessageRequestParams ---@field public type cmp_dictionary.kit.LSP.MessageType The message type. See {@link MessageType} ---@field public message string The actual message. ---@field public actions? cmp_dictionary.kit.LSP.MessageActionItem[] The message action items to present. ---@class cmp_dictionary.kit.LSP.MessageActionItem ---@field public title string A short title like 'Retry', 'Open Log' etc. ---@class cmp_dictionary.kit.LSP.LogMessageParams ---@field public type cmp_dictionary.kit.LSP.MessageType The message type. See {@link MessageType} ---@field public message string The actual message. ---@class cmp_dictionary.kit.LSP.DidOpenTextDocumentParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentItem The document that was opened. ---@class cmp_dictionary.kit.LSP.DidChangeTextDocumentParams ---@field public textDocument cmp_dictionary.kit.LSP.VersionedTextDocumentIdentifier The document that did change. The version number points
to the version after all provided content changes have
been applied. ---@field public contentChanges cmp_dictionary.kit.LSP.TextDocumentContentChangeEvent[] The actual content changes. The content changes describe single state changes
to the document. So if there are two content changes c1 (at array index 0) and
c2 (at array index 1) for a document in state S then c1 moves the document from
S to S' and c2 from S' to S''. So c1 is computed on the state S and c2 is computed
on the state S'.

To mirror the content of a document using change events use the following approach:
- start with the same initial content
- apply the 'textDocument/didChange' notifications in the order you receive them.
- apply the `TextDocumentContentChangeEvent`s in a single notification in the order
you receive them. ---@class cmp_dictionary.kit.LSP.TextDocumentChangeRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions ---@field public syncKind cmp_dictionary.kit.LSP.TextDocumentSyncKind How documents are synced to the server. ---@class cmp_dictionary.kit.LSP.DidCloseTextDocumentParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document that was closed. ---@class cmp_dictionary.kit.LSP.DidSaveTextDocumentParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document that was saved. ---@field public text? string Optional the content when saved. Depends on the includeText value
when the save notification was requested. ---@class cmp_dictionary.kit.LSP.TextDocumentSaveRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.SaveOptions ---@class cmp_dictionary.kit.LSP.WillSaveTextDocumentParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document that will be saved. ---@field public reason cmp_dictionary.kit.LSP.TextDocumentSaveReason The 'TextDocumentSaveReason'. ---@class cmp_dictionary.kit.LSP.TextEdit ---@field public range cmp_dictionary.kit.LSP.Range The range of the text document to be manipulated. To insert
text into a document create a range where start === end. ---@field public newText string The string to be inserted. For delete operations use an
empty string. ---@class cmp_dictionary.kit.LSP.DidChangeWatchedFilesParams ---@field public changes cmp_dictionary.kit.LSP.FileEvent[] The actual file events. ---@class cmp_dictionary.kit.LSP.DidChangeWatchedFilesRegistrationOptions ---@field public watchers cmp_dictionary.kit.LSP.FileSystemWatcher[] The watchers to register. ---@class cmp_dictionary.kit.LSP.PublishDiagnosticsParams ---@field public uri string The URI for which diagnostic information is reported. ---@field public version? integer Optional the version number of the document the diagnostics are published for.

@since 3.15.0 ---@field public diagnostics cmp_dictionary.kit.LSP.Diagnostic[] An array of diagnostic information items. ---@class cmp_dictionary.kit.LSP.CompletionParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public context? cmp_dictionary.kit.LSP.CompletionContext The completion context. This is only available it the client specifies
to send this using the client capability `textDocument.completion.contextSupport === true` ---@class cmp_dictionary.kit.LSP.CompletionItem ---@field public label string The label of this completion item.

The label property is also by default the text that
is inserted when selecting this completion.

If label details are provided the label itself should
be an unqualified name of the completion item. ---@field public labelDetails? cmp_dictionary.kit.LSP.CompletionItemLabelDetails Additional details for the label

@since 3.17.0 ---@field public kind? cmp_dictionary.kit.LSP.CompletionItemKind The kind of this completion item. Based of the kind
an icon is chosen by the editor. ---@field public tags? cmp_dictionary.kit.LSP.CompletionItemTag[] Tags for this completion item.

@since 3.15.0 ---@field public detail? string A human-readable string with additional information
about this item, like type or symbol information. ---@field public documentation? (string | cmp_dictionary.kit.LSP.MarkupContent) A human-readable string that represents a doc-comment. ---@field public deprecated? boolean Indicates if this item is deprecated.
@deprecated Use `tags` instead. ---@field public preselect? boolean Select this item when showing.

*Note* that only one completion item can be selected and that the
tool / client decides which item that is. The rule is that the *first*
item of those that match best is selected. ---@field public sortText? string A string that should be used when comparing this item
with other items. When `falsy` the [label](#CompletionItem.label)
is used. ---@field public filterText? string A string that should be used when filtering a set of
completion items. When `falsy` the [label](#CompletionItem.label)
is used. ---@field public insertText? string A string that should be inserted into a document when selecting
this completion. When `falsy` the [label](#CompletionItem.label)
is used.

The `insertText` is subject to interpretation by the client side.
Some tools might not take the string literally. For example
VS Code when code complete is requested in this example
`con` and a completion item with an `insertText` of
`console` is provided it will only insert `sole`. Therefore it is
recommended to use `textEdit` instead since it avoids additional client
side interpretation. ---@field public insertTextFormat? cmp_dictionary.kit.LSP.InsertTextFormat The format of the insert text. The format applies to both the
`insertText` property and the `newText` property of a provided
`textEdit`. If omitted defaults to `InsertTextFormat.PlainText`.

Please note that the insertTextFormat doesn't apply to
`additionalTextEdits`. ---@field public insertTextMode? cmp_dictionary.kit.LSP.InsertTextMode How whitespace and indentation is handled during completion
item insertion. If not provided the clients default value depends on
the `textDocument.completion.insertTextMode` client capability.

@since 3.16.0 ---@field public textEdit? (cmp_dictionary.kit.LSP.TextEdit | cmp_dictionary.kit.LSP.InsertReplaceEdit) An [edit](#TextEdit) which is applied to a document when selecting
this completion. When an edit is provided the value of
[insertText](#CompletionItem.insertText) is ignored.

Most editors support two different operations when accepting a completion
item. One is to insert a completion text and the other is to replace an
existing text with a completion text. Since this can usually not be
predetermined by a server it can report both ranges. Clients need to
signal support for `InsertReplaceEdits` via the
`textDocument.completion.insertReplaceSupport` client capability
property.

*Note 1:* The text edit's range as well as both ranges from an insert
replace edit must be a [single line] and they must contain the position
at which completion has been requested.
*Note 2:* If an `InsertReplaceEdit` is returned the edit's insert range
must be a prefix of the edit's replace range, that means it must be
contained and starting at the same position.

@since 3.16.0 additional type `InsertReplaceEdit` ---@field public textEditText? string The edit text used if the completion item is part of a CompletionList and
CompletionList defines an item default for the text edit range.

Clients will only honor this property if they opt into completion list
item defaults using the capability `completionList.itemDefaults`.

If not provided and a list's default range is provided the label
property is used as a text.

@since 3.17.0 ---@field public additionalTextEdits? cmp_dictionary.kit.LSP.TextEdit[] An optional array of additional [text edits](#TextEdit) that are applied when
selecting this completion. Edits must not overlap (including the same insert position)
with the main [edit](#CompletionItem.textEdit) nor with themselves.

Additional text edits should be used to change text unrelated to the current cursor position
(for example adding an import statement at the top of the file if the completion item will
insert an unqualified type). ---@field public commitCharacters? string[] An optional set of characters that when pressed while this completion is active will accept it first and
then type that character. *Note* that all commit characters should have `length=1` and that superfluous
characters will be ignored. ---@field public command? cmp_dictionary.kit.LSP.Command An optional [command](#Command) that is executed *after* inserting this completion. *Note* that
additional modifications to the current document should be described with the
[additionalTextEdits](#CompletionItem.additionalTextEdits)-property. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on a completion item between a
[CompletionRequest](#CompletionRequest) and a [CompletionResolveRequest](#CompletionResolveRequest). ---@class cmp_dictionary.kit.LSP.CompletionList ---@field public isIncomplete boolean This list it not complete. Further typing results in recomputing this list.

Recomputed lists have all their items replaced (not appended) in the
incomplete completion sessions. ---@field public itemDefaults? cmp_dictionary.kit.LSP.CompletionList.itemDefaults In many cases the items of an actual completion result share the same
value for properties like `commitCharacters` or the range of a text
edit. A completion list can therefore define item defaults which will
be used if a completion item itself doesn't specify the value.

If a completion list specifies a default value and a completion item
also specifies a corresponding value the one from the item is used.

Servers are only allowed to return default values if the client
signals support for this via the `completionList.itemDefaults`
capability.

@since 3.17.0 ---@field public items cmp_dictionary.kit.LSP.CompletionItem[] The completion items. ---@class cmp_dictionary.kit.LSP.CompletionList.itemDefaults ---@field public commitCharacters? string[] A default commit character set.

@since 3.17.0 ---@field public editRange? (cmp_dictionary.kit.LSP.Range | { insert: cmp_dictionary.kit.LSP.Range, replace: cmp_dictionary.kit.LSP.Range }) A default edit range.

@since 3.17.0 ---@field public insertTextFormat? cmp_dictionary.kit.LSP.InsertTextFormat A default insert text format.

@since 3.17.0 ---@field public insertTextMode? cmp_dictionary.kit.LSP.InsertTextMode A default insert text mode.

@since 3.17.0 ---@field public data? cmp_dictionary.kit.LSP.LSPAny A default data value.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CompletionRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.CompletionOptions ---@class cmp_dictionary.kit.LSP.HoverParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@class cmp_dictionary.kit.LSP.Hover ---@field public contents (cmp_dictionary.kit.LSP.MarkupContent | cmp_dictionary.kit.LSP.MarkedString | cmp_dictionary.kit.LSP.MarkedString[]) The hover's content ---@field public range? cmp_dictionary.kit.LSP.Range An optional range inside the text document that is used to
visualize the hover, e.g. by changing the background color. ---@class cmp_dictionary.kit.LSP.HoverRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.HoverOptions ---@class cmp_dictionary.kit.LSP.SignatureHelpParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public context? cmp_dictionary.kit.LSP.SignatureHelpContext The signature help context. This is only available if the client specifies
to send this using the client capability `textDocument.signatureHelp.contextSupport === true`

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.SignatureHelp ---@field public signatures cmp_dictionary.kit.LSP.SignatureInformation[] One or more signatures. ---@field public activeSignature? integer The active signature. If omitted or the value lies outside the
range of `signatures` the value defaults to zero or is ignored if
the `SignatureHelp` has no signatures.

Whenever possible implementors should make an active decision about
the active signature and shouldn't rely on a default value.

In future version of the protocol this property might become
mandatory to better express this. ---@field public activeParameter? integer The active parameter of the active signature. If omitted or the value
lies outside the range of `signatures[activeSignature].parameters`
defaults to 0 if the active signature has parameters. If
the active signature has no parameters it is ignored.
In future version of the protocol this property might become
mandatory to better express the active parameter if the
active signature does have any. ---@class cmp_dictionary.kit.LSP.SignatureHelpRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.SignatureHelpOptions ---@class cmp_dictionary.kit.LSP.DefinitionParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.DefinitionRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DefinitionOptions ---@class cmp_dictionary.kit.LSP.ReferenceParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public context cmp_dictionary.kit.LSP.ReferenceContext ---@class cmp_dictionary.kit.LSP.ReferenceRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.ReferenceOptions ---@class cmp_dictionary.kit.LSP.DocumentHighlightParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@class cmp_dictionary.kit.LSP.DocumentHighlight ---@field public range cmp_dictionary.kit.LSP.Range The range this highlight applies to. ---@field public kind? cmp_dictionary.kit.LSP.DocumentHighlightKind The highlight kind, default is [text](#DocumentHighlightKind.Text). ---@class cmp_dictionary.kit.LSP.DocumentHighlightRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentHighlightOptions ---@class cmp_dictionary.kit.LSP.DocumentSymbolParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@class cmp_dictionary.kit.LSP.SymbolInformation : cmp_dictionary.kit.LSP.BaseSymbolInformation ---@field public deprecated? boolean Indicates if this symbol is deprecated.

@deprecated Use tags instead ---@field public location cmp_dictionary.kit.LSP.Location The location of this symbol. The location's range is used by a tool
to reveal the location in the editor. If the symbol is selected in the
tool the range's start information is used to position the cursor. So
the range usually spans more than the actual symbol's name and does
normally include things like visibility modifiers.

The range doesn't have to denote a node range in the sense of an abstract
syntax tree. It can therefore not be used to re-construct a hierarchy of
the symbols. ---@class cmp_dictionary.kit.LSP.DocumentSymbol ---@field public name string The name of this symbol. Will be displayed in the user interface and therefore must not be
an empty string or a string only consisting of white spaces. ---@field public detail? string More detail for this symbol, e.g the signature of a function. ---@field public kind cmp_dictionary.kit.LSP.SymbolKind The kind of this symbol. ---@field public tags? cmp_dictionary.kit.LSP.SymbolTag[] Tags for this document symbol.

@since 3.16.0 ---@field public deprecated? boolean Indicates if this symbol is deprecated.

@deprecated Use tags instead ---@field public range cmp_dictionary.kit.LSP.Range The range enclosing this symbol not including leading/trailing whitespace but everything else
like comments. This information is typically used to determine if the clients cursor is
inside the symbol to reveal in the symbol in the UI. ---@field public selectionRange cmp_dictionary.kit.LSP.Range The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.
Must be contained by the `range`. ---@field public children? cmp_dictionary.kit.LSP.DocumentSymbol[] Children of this symbol, e.g. properties of a class. ---@class cmp_dictionary.kit.LSP.DocumentSymbolRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentSymbolOptions ---@class cmp_dictionary.kit.LSP.CodeActionParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document in which the command was invoked. ---@field public range cmp_dictionary.kit.LSP.Range The range for which the command was invoked. ---@field public context cmp_dictionary.kit.LSP.CodeActionContext Context carrying additional information. ---@class cmp_dictionary.kit.LSP.Command ---@field public title string Title of the command, like `save`. ---@field public command string The identifier of the actual command handler. ---@field public arguments? cmp_dictionary.kit.LSP.LSPAny[] Arguments that the command handler should be
invoked with. ---@class cmp_dictionary.kit.LSP.CodeAction ---@field public title string A short, human-readable, title for this code action. ---@field public kind? cmp_dictionary.kit.LSP.CodeActionKind The kind of the code action.

Used to filter code actions. ---@field public diagnostics? cmp_dictionary.kit.LSP.Diagnostic[] The diagnostics that this code action resolves. ---@field public isPreferred? boolean Marks this as a preferred action. Preferred actions are used by the `auto fix` command and can be targeted
by keybindings.

A quick fix should be marked preferred if it properly addresses the underlying error.
A refactoring should be marked preferred if it is the most reasonable choice of actions to take.

@since 3.15.0 ---@field public disabled? cmp_dictionary.kit.LSP.CodeAction.disabled Marks that the code action cannot currently be applied.

Clients should follow the following guidelines regarding disabled code actions:

- Disabled code actions are not shown in automatic [lightbulbs](https://code.visualstudio.com/docs/editor/editingevolved#_code-action)
code action menus.

- Disabled actions are shown as faded out in the code action menu when the user requests a more specific type
of code action, such as refactorings.

- If the user has a [keybinding](https://code.visualstudio.com/docs/editor/refactoring#_keybindings-for-code-actions)
that auto applies a code action and only disabled code actions are returned, the client should show the user an
error message with `reason` in the editor.

@since 3.16.0 ---@field public edit? cmp_dictionary.kit.LSP.WorkspaceEdit The workspace edit this code action performs. ---@field public command? cmp_dictionary.kit.LSP.Command A command this code action executes. If a code action
provides an edit and a command, first the edit is
executed and then the command. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on a code action between
a `textDocument/codeAction` and a `codeAction/resolve` request.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.CodeAction.disabled ---@field public reason string Human readable description of why the code action is currently disabled.

This is displayed in the code actions UI. ---@class cmp_dictionary.kit.LSP.CodeActionRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.CodeActionOptions ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public query string A query string to filter symbols by. Clients may send an empty
string here to request all symbols. ---@class cmp_dictionary.kit.LSP.WorkspaceSymbol : cmp_dictionary.kit.LSP.BaseSymbolInformation ---@field public location (cmp_dictionary.kit.LSP.Location | { uri: string }) The location of the symbol. Whether a server is allowed to
return a location without a range depends on the client
capability `workspace.symbol.resolveSupport`.

See SymbolInformation#location for more details. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on a workspace symbol between a
workspace symbol request and a workspace symbol resolve request. ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolRegistrationOptions : cmp_dictionary.kit.LSP.WorkspaceSymbolOptions ---@class cmp_dictionary.kit.LSP.CodeLensParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to request code lens for. ---@class cmp_dictionary.kit.LSP.CodeLens ---@field public range cmp_dictionary.kit.LSP.Range The range in which this code lens is valid. Should only span a single line. ---@field public command? cmp_dictionary.kit.LSP.Command The command this code lens represents. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on a code lens item between
a [CodeLensRequest](#CodeLensRequest) and a [CodeLensResolveRequest]
(#CodeLensResolveRequest) ---@class cmp_dictionary.kit.LSP.CodeLensRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.CodeLensOptions ---@class cmp_dictionary.kit.LSP.DocumentLinkParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams, cmp_dictionary.kit.LSP.PartialResultParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to provide document links for. ---@class cmp_dictionary.kit.LSP.DocumentLink ---@field public range cmp_dictionary.kit.LSP.Range The range this link applies to. ---@field public target? string The uri this link points to. If missing a resolve request is sent later. ---@field public tooltip? string The tooltip text when you hover over this link.

If a tooltip is provided, is will be displayed in a string that includes instructions on how to
trigger the link, such as `{0} (ctrl + click)`. The specific instructions vary depending on OS,
user settings, and localization.

@since 3.15.0 ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved on a document link between a
DocumentLinkRequest and a DocumentLinkResolveRequest. ---@class cmp_dictionary.kit.LSP.DocumentLinkRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentLinkOptions ---@class cmp_dictionary.kit.LSP.DocumentFormattingParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to format. ---@field public options cmp_dictionary.kit.LSP.FormattingOptions The format options. ---@class cmp_dictionary.kit.LSP.DocumentFormattingRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentFormattingOptions ---@class cmp_dictionary.kit.LSP.DocumentRangeFormattingParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to format. ---@field public range cmp_dictionary.kit.LSP.Range The range to format ---@field public options cmp_dictionary.kit.LSP.FormattingOptions The format options ---@class cmp_dictionary.kit.LSP.DocumentRangeFormattingRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentRangeFormattingOptions ---@class cmp_dictionary.kit.LSP.DocumentOnTypeFormattingParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to format. ---@field public position cmp_dictionary.kit.LSP.Position The position around which the on type formatting should happen.
This is not necessarily the exact position where the character denoted
by the property `ch` got typed. ---@field public ch string The character that has been typed that triggered the formatting
on type request. That is not necessarily the last character that
got inserted into the document since the client could auto insert
characters as well (e.g. like automatic brace completion). ---@field public options cmp_dictionary.kit.LSP.FormattingOptions The formatting options. ---@class cmp_dictionary.kit.LSP.DocumentOnTypeFormattingRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.DocumentOnTypeFormattingOptions ---@class cmp_dictionary.kit.LSP.RenameParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The document to rename. ---@field public position cmp_dictionary.kit.LSP.Position The position at which this request was sent. ---@field public newName string The new name of the symbol. If the given name is not valid the
request must return a [ResponseError](#ResponseError) with an
appropriate message set. ---@class cmp_dictionary.kit.LSP.RenameRegistrationOptions : cmp_dictionary.kit.LSP.TextDocumentRegistrationOptions, cmp_dictionary.kit.LSP.RenameOptions ---@class cmp_dictionary.kit.LSP.PrepareRenameParams : cmp_dictionary.kit.LSP.TextDocumentPositionParams, cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@class cmp_dictionary.kit.LSP.ExecuteCommandParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public command string The identifier of the actual command handler. ---@field public arguments? cmp_dictionary.kit.LSP.LSPAny[] Arguments that the command should be invoked with. ---@class cmp_dictionary.kit.LSP.ExecuteCommandRegistrationOptions : cmp_dictionary.kit.LSP.ExecuteCommandOptions ---@class cmp_dictionary.kit.LSP.ApplyWorkspaceEditParams ---@field public label? string An optional label of the workspace edit. This label is
presented in the user interface for example on an undo
stack to undo the workspace edit. ---@field public edit cmp_dictionary.kit.LSP.WorkspaceEdit The edits to apply. ---@class cmp_dictionary.kit.LSP.ApplyWorkspaceEditResult ---@field public applied boolean Indicates whether the edit was applied or not. ---@field public failureReason? string An optional textual description for why the edit was not applied.
This may be used by the server for diagnostic logging or to provide
a suitable error for a request that triggered the edit. ---@field public failedChange? integer Depending on the client's failure handling strategy `failedChange` might
contain the index of the change that failed. This property is only available
if the client signals a `failureHandlingStrategy` in its client capabilities. ---@class cmp_dictionary.kit.LSP.WorkDoneProgressBegin ---@field public kind "begin" ---@field public title string Mandatory title of the progress operation. Used to briefly inform about
the kind of operation being performed.

Examples: "Indexing" or "Linking dependencies". ---@field public cancellable? boolean Controls if a cancel button should show to allow the user to cancel the
long running operation. Clients that don't support cancellation are allowed
to ignore the setting. ---@field public message? string Optional, more detailed associated progress message. Contains
complementary information to the `title`.

Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
If unset, the previous progress message (if any) is still valid. ---@field public percentage? integer Optional progress percentage to display (value 100 is considered 100%).
If not provided infinite progress is assumed and clients are allowed
to ignore the `percentage` value in subsequent in report notifications.

The value should be steadily rising. Clients are free to ignore values
that are not following this rule. The value range is [0, 100]. ---@class cmp_dictionary.kit.LSP.WorkDoneProgressReport ---@field public kind "report" ---@field public cancellable? boolean Controls enablement state of a cancel button.

Clients that don't support cancellation or don't support controlling the button's
enablement state are allowed to ignore the property. ---@field public message? string Optional, more detailed associated progress message. Contains
complementary information to the `title`.

Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
If unset, the previous progress message (if any) is still valid. ---@field public percentage? integer Optional progress percentage to display (value 100 is considered 100%).
If not provided infinite progress is assumed and clients are allowed
to ignore the `percentage` value in subsequent in report notifications.

The value should be steadily rising. Clients are free to ignore values
that are not following this rule. The value range is [0, 100] ---@class cmp_dictionary.kit.LSP.WorkDoneProgressEnd ---@field public kind "end" ---@field public message? string Optional, a final message indicating to for example indicate the outcome
of the operation. ---@class cmp_dictionary.kit.LSP.SetTraceParams ---@field public value cmp_dictionary.kit.LSP.TraceValues ---@class cmp_dictionary.kit.LSP.LogTraceParams ---@field public message string ---@field public verbose? string ---@class cmp_dictionary.kit.LSP.CancelParams ---@field public id (integer | string) The request id to cancel. ---@class cmp_dictionary.kit.LSP.ProgressParams ---@field public token cmp_dictionary.kit.LSP.ProgressToken The progress token provided by the client or server. ---@field public value cmp_dictionary.kit.LSP.LSPAny The progress data. ---@class cmp_dictionary.kit.LSP.TextDocumentPositionParams ---@field public textDocument cmp_dictionary.kit.LSP.TextDocumentIdentifier The text document. ---@field public position cmp_dictionary.kit.LSP.Position The position inside the text document. ---@class cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public workDoneToken? cmp_dictionary.kit.LSP.ProgressToken An optional token that a server can use to report work done progress. ---@class cmp_dictionary.kit.LSP.LocationLink ---@field public originSelectionRange? cmp_dictionary.kit.LSP.Range Span of the origin of this link.

Used as the underlined span for mouse interaction. Defaults to the word range at
the definition position. ---@field public targetUri string The target resource identifier of this link. ---@field public targetRange cmp_dictionary.kit.LSP.Range The full target range of this link. If the target for example is a symbol then target range is the
range enclosing this symbol not including leading/trailing whitespace but everything else
like comments. This information is typically used to highlight the range in the editor. ---@field public targetSelectionRange cmp_dictionary.kit.LSP.Range The range that should be selected and revealed when this link is being followed, e.g the name of a function.
Must be contained by the `targetRange`. See also `DocumentSymbol#range` ---@class cmp_dictionary.kit.LSP.Range ---@field public start cmp_dictionary.kit.LSP.Position The range's start position. ---@field public end cmp_dictionary.kit.LSP.Position The range's end position. ---@class cmp_dictionary.kit.LSP.ImplementationOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@field public id? string The id used to register the request. The id can be used to deregister
the request again. See also Registration#id. ---@class cmp_dictionary.kit.LSP.TypeDefinitionOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.WorkspaceFoldersChangeEvent ---@field public added cmp_dictionary.kit.LSP.WorkspaceFolder[] The array of added workspace folders ---@field public removed cmp_dictionary.kit.LSP.WorkspaceFolder[] The array of the removed workspace folders ---@class cmp_dictionary.kit.LSP.ConfigurationItem ---@field public scopeUri? string The scope to get the configuration section for. ---@field public section? string The configuration section asked for. ---@class cmp_dictionary.kit.LSP.TextDocumentIdentifier ---@field public uri string The text document's uri. ---@class cmp_dictionary.kit.LSP.Color ---@field public red integer The red component of this color in the range [0-1]. ---@field public green integer The green component of this color in the range [0-1]. ---@field public blue integer The blue component of this color in the range [0-1]. ---@field public alpha integer The alpha component of this color in the range [0-1]. ---@class cmp_dictionary.kit.LSP.DocumentColorOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.FoldingRangeOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.DeclarationOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.Position ---@field public line integer Line position in a document (zero-based).

If a line number is greater than the number of lines in a document, it defaults back to the number of lines in the document.
If a line number is negative, it defaults to 0. ---@field public character integer Character offset on a line in a document (zero-based).

The meaning of this offset is determined by the negotiated
`PositionEncodingKind`.

If the character value is greater than the line length it defaults back to the
line length. ---@class cmp_dictionary.kit.LSP.SelectionRangeOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.CallHierarchyOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.SemanticTokensOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public legend cmp_dictionary.kit.LSP.SemanticTokensLegend The legend used by the server ---@field public range? (boolean | { }) Server supports providing semantic tokens for a specific range
of a document. ---@field public full? (boolean | { delta?: boolean }) Server supports providing semantic tokens for a full document. ---@class cmp_dictionary.kit.LSP.SemanticTokensEdit ---@field public start integer The start offset of the edit. ---@field public deleteCount integer The count of elements to remove. ---@field public data? integer[] The elements to insert. ---@class cmp_dictionary.kit.LSP.LinkedEditingRangeOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.FileCreate ---@field public uri string A file:// URI for the location of the file/folder being created. ---@class cmp_dictionary.kit.LSP.TextDocumentEdit ---@field public textDocument cmp_dictionary.kit.LSP.OptionalVersionedTextDocumentIdentifier The text document to change. ---@field public edits (cmp_dictionary.kit.LSP.TextEdit | cmp_dictionary.kit.LSP.AnnotatedTextEdit)[] The edits to be applied.

@since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a
client capability. ---@class cmp_dictionary.kit.LSP.CreateFile : cmp_dictionary.kit.LSP.ResourceOperation ---@field public kind "create" A create ---@field public uri string The resource to create. ---@field public options? cmp_dictionary.kit.LSP.CreateFileOptions Additional options ---@class cmp_dictionary.kit.LSP.RenameFile : cmp_dictionary.kit.LSP.ResourceOperation ---@field public kind "rename" A rename ---@field public oldUri string The old (existing) location. ---@field public newUri string The new location. ---@field public options? cmp_dictionary.kit.LSP.RenameFileOptions Rename options. ---@class cmp_dictionary.kit.LSP.DeleteFile : cmp_dictionary.kit.LSP.ResourceOperation ---@field public kind "delete" A delete ---@field public uri string The file to delete. ---@field public options? cmp_dictionary.kit.LSP.DeleteFileOptions Delete options. ---@class cmp_dictionary.kit.LSP.ChangeAnnotation ---@field public label string A human-readable string describing the actual change. The string
is rendered prominent in the user interface. ---@field public needsConfirmation? boolean A flag which indicates that user confirmation is needed
before applying the change. ---@field public description? string A human-readable string which is rendered less prominent in
the user interface. ---@class cmp_dictionary.kit.LSP.FileOperationFilter ---@field public scheme? string A Uri scheme like `file` or `untitled`. ---@field public pattern cmp_dictionary.kit.LSP.FileOperationPattern The actual file operation pattern. ---@class cmp_dictionary.kit.LSP.FileRename ---@field public oldUri string A file:// URI for the original location of the file/folder being renamed. ---@field public newUri string A file:// URI for the new location of the file/folder being renamed. ---@class cmp_dictionary.kit.LSP.FileDelete ---@field public uri string A file:// URI for the location of the file/folder being deleted. ---@class cmp_dictionary.kit.LSP.MonikerOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.TypeHierarchyOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.InlineValueContext ---@field public frameId integer The stack frame (as a DAP Id) where the execution has stopped. ---@field public stoppedLocation cmp_dictionary.kit.LSP.Range The document range where execution has stopped.
Typically the end position of the range denotes the line where the inline values are shown. ---@class cmp_dictionary.kit.LSP.InlineValueText ---@field public range cmp_dictionary.kit.LSP.Range The document range for which the inline value applies. ---@field public text string The text of the inline value. ---@class cmp_dictionary.kit.LSP.InlineValueVariableLookup ---@field public range cmp_dictionary.kit.LSP.Range The document range for which the inline value applies.
The range is used to extract the variable name from the underlying document. ---@field public variableName? string If specified the name of the variable to look up. ---@field public caseSensitiveLookup boolean How to perform the lookup. ---@class cmp_dictionary.kit.LSP.InlineValueEvaluatableExpression ---@field public range cmp_dictionary.kit.LSP.Range The document range for which the inline value applies.
The range is used to extract the evaluatable expression from the underlying document. ---@field public expression? string If specified the expression overrides the extracted expression. ---@class cmp_dictionary.kit.LSP.InlineValueOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.InlayHintLabelPart ---@field public value string The value of this label part. ---@field public tooltip? (string | cmp_dictionary.kit.LSP.MarkupContent) The tooltip text when you hover over this label part. Depending on
the client capability `inlayHint.resolveSupport` clients might resolve
this property late using the resolve request. ---@field public location? cmp_dictionary.kit.LSP.Location An optional source code location that represents this
label part.

The editor will use this location for the hover and for code navigation
features: This part will become a clickable link that resolves to the
definition of the symbol at the given location (not necessarily the
location itself), it shows the hover that shows at the given location,
and it shows a context menu with further code navigation commands.

Depending on the client capability `inlayHint.resolveSupport` clients
might resolve this property late using the resolve request. ---@field public command? cmp_dictionary.kit.LSP.Command An optional command for this label part.

Depending on the client capability `inlayHint.resolveSupport` clients
might resolve this property late using the resolve request. ---@class cmp_dictionary.kit.LSP.MarkupContent ---@field public kind cmp_dictionary.kit.LSP.MarkupKind The type of the Markup ---@field public value string The content itself ---@class cmp_dictionary.kit.LSP.InlayHintOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public resolveProvider? boolean The server provides support to resolve additional
information for an inlay hint item. ---@class cmp_dictionary.kit.LSP.RelatedFullDocumentDiagnosticReport : cmp_dictionary.kit.LSP.FullDocumentDiagnosticReport ---@field public relatedDocuments? table Diagnostics of related documents. This information is useful
in programming languages where code in a file A can generate
diagnostics in a file B which A depends on. An example of
such a language is C/C++ where marco definitions in a file
a.cpp and result in errors in a header file b.hpp.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.RelatedUnchangedDocumentDiagnosticReport : cmp_dictionary.kit.LSP.UnchangedDocumentDiagnosticReport ---@field public relatedDocuments? table Diagnostics of related documents. This information is useful
in programming languages where code in a file A can generate
diagnostics in a file B which A depends on. An example of
such a language is C/C++ where marco definitions in a file
a.cpp and result in errors in a header file b.hpp.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.FullDocumentDiagnosticReport ---@field public kind "full" A full document diagnostic report. ---@field public resultId? string An optional result id. If provided it will
be sent on the next diagnostic request for the
same document. ---@field public items cmp_dictionary.kit.LSP.Diagnostic[] The actual items. ---@class cmp_dictionary.kit.LSP.UnchangedDocumentDiagnosticReport ---@field public kind "unchanged" A document diagnostic report indicating
no changes to the last result. A server can
only return `unchanged` if result ids are
provided. ---@field public resultId string A result id which will be sent on the next
diagnostic request for the same document. ---@class cmp_dictionary.kit.LSP.DiagnosticOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public identifier? string An optional identifier under which the diagnostics are
managed by the client. ---@field public interFileDependencies boolean Whether the language has inter file dependencies meaning that
editing code in one file can result in a different diagnostic
set in another file. Inter file dependencies are common for
most programming languages and typically uncommon for linters. ---@field public workspaceDiagnostics boolean The server provides support for workspace diagnostics as well. ---@class cmp_dictionary.kit.LSP.PreviousResultId ---@field public uri string The URI for which the client knowns a
result id. ---@field public value string The value of the previous result id. ---@class cmp_dictionary.kit.LSP.NotebookDocument ---@field public uri string The notebook document's uri. ---@field public notebookType string The type of the notebook. ---@field public version integer The version number of this document (it will increase after each
change, including undo/redo). ---@field public metadata? cmp_dictionary.kit.LSP.LSPObject Additional metadata stored with the notebook
document.

Note: should always be an object literal (e.g. LSPObject) ---@field public cells cmp_dictionary.kit.LSP.NotebookCell[] The cells of a notebook. ---@class cmp_dictionary.kit.LSP.TextDocumentItem ---@field public uri string The text document's uri. ---@field public languageId string The text document's language identifier. ---@field public version integer The version number of this document (it will increase after each
change, including undo/redo). ---@field public text string The content of the opened text document. ---@class cmp_dictionary.kit.LSP.VersionedNotebookDocumentIdentifier ---@field public version integer The version number of this notebook document. ---@field public uri string The notebook document's uri. ---@class cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent ---@field public metadata? cmp_dictionary.kit.LSP.LSPObject The changed meta data if any.

Note: should always be an object literal (e.g. LSPObject) ---@field public cells? cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent.cells Changes to cells ---@class cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent.cells ---@field public structure? cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent.cells.structure Changes to the cell structure to add or
remove cells. ---@field public data? cmp_dictionary.kit.LSP.NotebookCell[] Changes to notebook cells properties like its
kind, execution summary or metadata. ---@field public textContent? { document: cmp_dictionary.kit.LSP.VersionedTextDocumentIdentifier, changes: cmp_dictionary.kit.LSP.TextDocumentContentChangeEvent[] }[] Changes to the text content of notebook cells. ---@class cmp_dictionary.kit.LSP.NotebookDocumentChangeEvent.cells.structure ---@field public array cmp_dictionary.kit.LSP.NotebookCellArrayChange The change to the cell array. ---@field public didOpen? cmp_dictionary.kit.LSP.TextDocumentItem[] Additional opened cell text documents. ---@field public didClose? cmp_dictionary.kit.LSP.TextDocumentIdentifier[] Additional closed cell text documents. ---@class cmp_dictionary.kit.LSP.NotebookDocumentIdentifier ---@field public uri string The notebook document's uri. ---@class cmp_dictionary.kit.LSP.Registration ---@field public id string The id used to register the request. The id can be used to deregister
the request again. ---@field public method string The method / capability to register for. ---@field public registerOptions? cmp_dictionary.kit.LSP.LSPAny Options necessary for the registration. ---@class cmp_dictionary.kit.LSP.Unregistration ---@field public id string The id used to unregister the request or notification. Usually an id
provided during the register request. ---@field public method string The method to unregister for. ---@class cmp_dictionary.kit.LSP._InitializeParams : cmp_dictionary.kit.LSP.WorkDoneProgressParams ---@field public processId (integer | nil) The process Id of the parent process that started
the server.

Is `null` if the process has not been started by another process.
If the parent process is not alive then the server should exit. ---@field public clientInfo? cmp_dictionary.kit.LSP._InitializeParams.clientInfo Information about the client

@since 3.15.0 ---@field public locale? string The locale the client is currently showing the user interface
in. This must not necessarily be the locale of the operating
system.

Uses IETF language tags as the value's syntax
(See https://en.wikipedia.org/wiki/IETF_language_tag)

@since 3.16.0 ---@field public rootPath? (string | nil) The rootPath of the workspace. Is null
if no folder is open.

@deprecated in favour of rootUri. ---@field public rootUri (string | nil) The rootUri of the workspace. Is null if no
folder is open. If both `rootPath` and `rootUri` are set
`rootUri` wins.

@deprecated in favour of workspaceFolders. ---@field public capabilities cmp_dictionary.kit.LSP.ClientCapabilities The capabilities provided by the client (editor or tool) ---@field public initializationOptions? cmp_dictionary.kit.LSP.LSPAny User provided initialization options. ---@field public trace? ("off" | "messages" | "compact" | "verbose") The initial trace setting. If omitted trace is disabled ('off'). ---@class cmp_dictionary.kit.LSP._InitializeParams.clientInfo ---@field public name string The name of the client as defined by the client. ---@field public version? string The client's version as defined by the client. ---@class cmp_dictionary.kit.LSP.WorkspaceFoldersInitializeParams ---@field public workspaceFolders? (cmp_dictionary.kit.LSP.WorkspaceFolder[] | nil) The workspace folders configured in the client when the server starts.

This property is only available if the client supports workspace folders.
It can be `null` if the client supports workspace folders but none are
configured.

@since 3.6.0 ---@class cmp_dictionary.kit.LSP.ServerCapabilities ---@field public positionEncoding? cmp_dictionary.kit.LSP.PositionEncodingKind The position encoding the server picked from the encodings offered
by the client via the client capability `general.positionEncodings`.

If the client didn't provide any position encodings the only valid
value that a server can return is 'utf-16'.

If omitted it defaults to 'utf-16'.

@since 3.17.0 ---@field public textDocumentSync? (cmp_dictionary.kit.LSP.TextDocumentSyncOptions | cmp_dictionary.kit.LSP.TextDocumentSyncKind) Defines how text documents are synced. Is either a detailed structure
defining each notification or for backwards compatibility the
TextDocumentSyncKind number. ---@field public notebookDocumentSync? (cmp_dictionary.kit.LSP.NotebookDocumentSyncOptions | cmp_dictionary.kit.LSP.NotebookDocumentSyncRegistrationOptions) Defines how notebook documents are synced.

@since 3.17.0 ---@field public completionProvider? cmp_dictionary.kit.LSP.CompletionOptions The server provides completion support. ---@field public hoverProvider? (boolean | cmp_dictionary.kit.LSP.HoverOptions) The server provides hover support. ---@field public signatureHelpProvider? cmp_dictionary.kit.LSP.SignatureHelpOptions The server provides signature help support. ---@field public declarationProvider? (boolean | cmp_dictionary.kit.LSP.DeclarationOptions | cmp_dictionary.kit.LSP.DeclarationRegistrationOptions) The server provides Goto Declaration support. ---@field public definitionProvider? (boolean | cmp_dictionary.kit.LSP.DefinitionOptions) The server provides goto definition support. ---@field public typeDefinitionProvider? (boolean | cmp_dictionary.kit.LSP.TypeDefinitionOptions | cmp_dictionary.kit.LSP.TypeDefinitionRegistrationOptions) The server provides Goto Type Definition support. ---@field public implementationProvider? (boolean | cmp_dictionary.kit.LSP.ImplementationOptions | cmp_dictionary.kit.LSP.ImplementationRegistrationOptions) The server provides Goto Implementation support. ---@field public referencesProvider? (boolean | cmp_dictionary.kit.LSP.ReferenceOptions) The server provides find references support. ---@field public documentHighlightProvider? (boolean | cmp_dictionary.kit.LSP.DocumentHighlightOptions) The server provides document highlight support. ---@field public documentSymbolProvider? (boolean | cmp_dictionary.kit.LSP.DocumentSymbolOptions) The server provides document symbol support. ---@field public codeActionProvider? (boolean | cmp_dictionary.kit.LSP.CodeActionOptions) The server provides code actions. CodeActionOptions may only be
specified if the client states that it supports
`codeActionLiteralSupport` in its initial `initialize` request. ---@field public codeLensProvider? cmp_dictionary.kit.LSP.CodeLensOptions The server provides code lens. ---@field public documentLinkProvider? cmp_dictionary.kit.LSP.DocumentLinkOptions The server provides document link support. ---@field public colorProvider? (boolean | cmp_dictionary.kit.LSP.DocumentColorOptions | cmp_dictionary.kit.LSP.DocumentColorRegistrationOptions) The server provides color provider support. ---@field public workspaceSymbolProvider? (boolean | cmp_dictionary.kit.LSP.WorkspaceSymbolOptions) The server provides workspace symbol support. ---@field public documentFormattingProvider? (boolean | cmp_dictionary.kit.LSP.DocumentFormattingOptions) The server provides document formatting. ---@field public documentRangeFormattingProvider? (boolean | cmp_dictionary.kit.LSP.DocumentRangeFormattingOptions) The server provides document range formatting. ---@field public documentOnTypeFormattingProvider? cmp_dictionary.kit.LSP.DocumentOnTypeFormattingOptions The server provides document formatting on typing. ---@field public renameProvider? (boolean | cmp_dictionary.kit.LSP.RenameOptions) The server provides rename support. RenameOptions may only be
specified if the client states that it supports
`prepareSupport` in its initial `initialize` request. ---@field public foldingRangeProvider? (boolean | cmp_dictionary.kit.LSP.FoldingRangeOptions | cmp_dictionary.kit.LSP.FoldingRangeRegistrationOptions) The server provides folding provider support. ---@field public selectionRangeProvider? (boolean | cmp_dictionary.kit.LSP.SelectionRangeOptions | cmp_dictionary.kit.LSP.SelectionRangeRegistrationOptions) The server provides selection range support. ---@field public executeCommandProvider? cmp_dictionary.kit.LSP.ExecuteCommandOptions The server provides execute command support. ---@field public callHierarchyProvider? (boolean | cmp_dictionary.kit.LSP.CallHierarchyOptions | cmp_dictionary.kit.LSP.CallHierarchyRegistrationOptions) The server provides call hierarchy support.

@since 3.16.0 ---@field public linkedEditingRangeProvider? (boolean | cmp_dictionary.kit.LSP.LinkedEditingRangeOptions | cmp_dictionary.kit.LSP.LinkedEditingRangeRegistrationOptions) The server provides linked editing range support.

@since 3.16.0 ---@field public semanticTokensProvider? (cmp_dictionary.kit.LSP.SemanticTokensOptions | cmp_dictionary.kit.LSP.SemanticTokensRegistrationOptions) The server provides semantic tokens support.

@since 3.16.0 ---@field public monikerProvider? (boolean | cmp_dictionary.kit.LSP.MonikerOptions | cmp_dictionary.kit.LSP.MonikerRegistrationOptions) The server provides moniker support.

@since 3.16.0 ---@field public typeHierarchyProvider? (boolean | cmp_dictionary.kit.LSP.TypeHierarchyOptions | cmp_dictionary.kit.LSP.TypeHierarchyRegistrationOptions) The server provides type hierarchy support.

@since 3.17.0 ---@field public inlineValueProvider? (boolean | cmp_dictionary.kit.LSP.InlineValueOptions | cmp_dictionary.kit.LSP.InlineValueRegistrationOptions) The server provides inline values.

@since 3.17.0 ---@field public inlayHintProvider? (boolean | cmp_dictionary.kit.LSP.InlayHintOptions | cmp_dictionary.kit.LSP.InlayHintRegistrationOptions) The server provides inlay hints.

@since 3.17.0 ---@field public diagnosticProvider? (cmp_dictionary.kit.LSP.DiagnosticOptions | cmp_dictionary.kit.LSP.DiagnosticRegistrationOptions) The server has support for pull model diagnostics.

@since 3.17.0 ---@field public workspace? cmp_dictionary.kit.LSP.ServerCapabilities.workspace Workspace specific server capabilities. ---@field public experimental? cmp_dictionary.kit.LSP.LSPAny Experimental server capabilities. ---@class cmp_dictionary.kit.LSP.ServerCapabilities.workspace ---@field public workspaceFolders? cmp_dictionary.kit.LSP.WorkspaceFoldersServerCapabilities The server supports workspace folder.

@since 3.6.0 ---@field public fileOperations? cmp_dictionary.kit.LSP.FileOperationOptions The server is interested in notifications/requests for operations on files.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.VersionedTextDocumentIdentifier : cmp_dictionary.kit.LSP.TextDocumentIdentifier ---@field public version integer The version number of this document. ---@class cmp_dictionary.kit.LSP.SaveOptions ---@field public includeText? boolean The client is supposed to include the content on save. ---@class cmp_dictionary.kit.LSP.FileEvent ---@field public uri string The file's uri. ---@field public type cmp_dictionary.kit.LSP.FileChangeType The change type. ---@class cmp_dictionary.kit.LSP.FileSystemWatcher ---@field public globPattern cmp_dictionary.kit.LSP.GlobPattern The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.

@since 3.17.0 support for relative patterns. ---@field public kind? cmp_dictionary.kit.LSP.WatchKind The kind of events of interest. If omitted it defaults
to WatchKind.Create | WatchKind.Change | WatchKind.Delete
which is 7. ---@class cmp_dictionary.kit.LSP.Diagnostic ---@field public range cmp_dictionary.kit.LSP.Range The range at which the message applies ---@field public severity? cmp_dictionary.kit.LSP.DiagnosticSeverity The diagnostic's severity. Can be omitted. If omitted it is up to the
client to interpret diagnostics as error, warning, info or hint. ---@field public code? (integer | string) The diagnostic's code, which usually appear in the user interface. ---@field public codeDescription? cmp_dictionary.kit.LSP.CodeDescription An optional property to describe the error code.
Requires the code field (above) to be present/not null.

@since 3.16.0 ---@field public source? string A human-readable string describing the source of this
diagnostic, e.g. 'typescript' or 'super lint'. It usually
appears in the user interface. ---@field public message string The diagnostic's message. It usually appears in the user interface ---@field public tags? cmp_dictionary.kit.LSP.DiagnosticTag[] Additional metadata about the diagnostic.

@since 3.15.0 ---@field public relatedInformation? cmp_dictionary.kit.LSP.DiagnosticRelatedInformation[] An array of related diagnostic information, e.g. when symbol-names within
a scope collide all definitions can be marked via this property. ---@field public data? cmp_dictionary.kit.LSP.LSPAny A data entry field that is preserved between a `textDocument/publishDiagnostics`
notification and `textDocument/codeAction` request.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.CompletionContext ---@field public triggerKind cmp_dictionary.kit.LSP.CompletionTriggerKind How the completion was triggered. ---@field public triggerCharacter? string The trigger character (a single character) that has trigger code complete.
Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter` ---@class cmp_dictionary.kit.LSP.CompletionItemLabelDetails ---@field public detail? string An optional string which is rendered less prominently directly after {@link CompletionItem.label label},
without any spacing. Should be used for function signatures and type annotations. ---@field public description? string An optional string which is rendered less prominently after {@link CompletionItem.detail}. Should be used
for fully qualified names and file paths. ---@class cmp_dictionary.kit.LSP.InsertReplaceEdit ---@field public newText string The string to be inserted. ---@field public insert cmp_dictionary.kit.LSP.Range The range if the insert is requested ---@field public replace cmp_dictionary.kit.LSP.Range The range if the replace is requested. ---@class cmp_dictionary.kit.LSP.CompletionOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public triggerCharacters? string[] Most tools trigger completion request automatically without explicitly requesting
it using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user
starts to type an identifier. For example if the user types `c` in a JavaScript file
code complete will automatically pop up present `console` besides others as a
completion item. Characters that make up identifiers don't need to be listed here.

If code complete should automatically be trigger on characters not being valid inside
an identifier (for example `.` in JavaScript) list them in `triggerCharacters`. ---@field public allCommitCharacters? string[] The list of all possible characters that commit a completion. This field can be used
if clients don't support individual commit characters per completion item. See
`ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`

If a server provides both `allCommitCharacters` and commit characters on an individual
completion item the ones on the completion item win.

@since 3.2.0 ---@field public resolveProvider? boolean The server provides support to resolve additional
information for a completion item. ---@field public completionItem? cmp_dictionary.kit.LSP.CompletionOptions.completionItem The server supports the following `CompletionItem` specific
capabilities.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CompletionOptions.completionItem ---@field public labelDetailsSupport? boolean The server has support for completion item label
details (see also `CompletionItemLabelDetails`) when
receiving a completion item in a resolve call.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.HoverOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.SignatureHelpContext ---@field public triggerKind cmp_dictionary.kit.LSP.SignatureHelpTriggerKind Action that caused signature help to be triggered. ---@field public triggerCharacter? string Character that caused signature help to be triggered.

This is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter` ---@field public isRetrigger boolean `true` if signature help was already showing when it was triggered.

Retriggers occurs when the signature help is already active and can be caused by actions such as
typing a trigger character, a cursor move, or document content changes. ---@field public activeSignatureHelp? cmp_dictionary.kit.LSP.SignatureHelp The currently active `SignatureHelp`.

The `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on
the user navigating through available signatures. ---@class cmp_dictionary.kit.LSP.SignatureInformation ---@field public label string The label of this signature. Will be shown in
the UI. ---@field public documentation? (string | cmp_dictionary.kit.LSP.MarkupContent) The human-readable doc-comment of this signature. Will be shown
in the UI but can be omitted. ---@field public parameters? cmp_dictionary.kit.LSP.ParameterInformation[] The parameters of this signature. ---@field public activeParameter? integer The index of the active parameter.

If provided, this is used in place of `SignatureHelp.activeParameter`.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.SignatureHelpOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public triggerCharacters? string[] List of characters that trigger signature help automatically. ---@field public retriggerCharacters? string[] List of characters that re-trigger signature help.

These trigger characters are only active when signature help is already showing. All trigger characters
are also counted as re-trigger characters.

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.DefinitionOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.ReferenceContext ---@field public includeDeclaration boolean Include the declaration of the current symbol. ---@class cmp_dictionary.kit.LSP.ReferenceOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.DocumentHighlightOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.BaseSymbolInformation ---@field public name string The name of this symbol. ---@field public kind cmp_dictionary.kit.LSP.SymbolKind The kind of this symbol. ---@field public tags? cmp_dictionary.kit.LSP.SymbolTag[] Tags for this symbol.

@since 3.16.0 ---@field public containerName? string The name of the symbol containing this symbol. This information is for
user interface purposes (e.g. to render a qualifier in the user interface
if necessary). It can't be used to re-infer a hierarchy for the document
symbols. ---@class cmp_dictionary.kit.LSP.DocumentSymbolOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public label? string A human-readable string that is shown when multiple outlines trees
are shown for the same document.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.CodeActionContext ---@field public diagnostics cmp_dictionary.kit.LSP.Diagnostic[] An array of diagnostics known on the client side overlapping the range provided to the
`textDocument/codeAction` request. They are provided so that the server knows which
errors are currently presented to the user for the given range. There is no guarantee
that these accurately reflect the error state of the resource. The primary parameter
to compute code actions is the provided range. ---@field public only? cmp_dictionary.kit.LSP.CodeActionKind[] Requested kind of actions to return.

Actions not of this kind are filtered out by the client before being shown. So servers
can omit computing them. ---@field public triggerKind? cmp_dictionary.kit.LSP.CodeActionTriggerKind The reason why code actions were requested.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CodeActionOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public codeActionKinds? cmp_dictionary.kit.LSP.CodeActionKind[] CodeActionKinds that this server may return.

The list of kinds may be generic, such as `CodeActionKind.Refactor`, or the server
may list out every specific kind they provide. ---@field public resolveProvider? boolean The server provides support to resolve additional
information for a code action.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public resolveProvider? boolean The server provides support to resolve additional
information for a workspace symbol.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CodeLensOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public resolveProvider? boolean Code lens has a resolve provider as well. ---@class cmp_dictionary.kit.LSP.DocumentLinkOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public resolveProvider? boolean Document links have a resolve provider as well. ---@class cmp_dictionary.kit.LSP.FormattingOptions ---@field public tabSize integer Size of a tab in spaces. ---@field public insertSpaces boolean Prefer spaces over tabs. ---@field public trimTrailingWhitespace? boolean Trim trailing whitespace on a line.

@since 3.15.0 ---@field public insertFinalNewline? boolean Insert a newline character at the end of the file if one does not exist.

@since 3.15.0 ---@field public trimFinalNewlines? boolean Trim all newlines after the final newline at the end of the file.

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.DocumentFormattingOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.DocumentRangeFormattingOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@class cmp_dictionary.kit.LSP.DocumentOnTypeFormattingOptions ---@field public firstTriggerCharacter string A character on which formatting should be triggered, like `{`. ---@field public moreTriggerCharacter? string[] More trigger characters. ---@class cmp_dictionary.kit.LSP.RenameOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public prepareProvider? boolean Renames should be checked and tested before being executed.

@since version 3.12.0 ---@class cmp_dictionary.kit.LSP.ExecuteCommandOptions : cmp_dictionary.kit.LSP.WorkDoneProgressOptions ---@field public commands string[] The commands to be executed on the server ---@class cmp_dictionary.kit.LSP.SemanticTokensLegend ---@field public tokenTypes string[] The token types a server uses. ---@field public tokenModifiers string[] The token modifiers a server uses. ---@class cmp_dictionary.kit.LSP.OptionalVersionedTextDocumentIdentifier : cmp_dictionary.kit.LSP.TextDocumentIdentifier ---@field public version (integer | nil) The version number of this document. If a versioned text document identifier
is sent from the server to the client and the file is not open in the editor
(the server has not received an open notification before) the server can send
`null` to indicate that the version is unknown and the content on disk is the
truth (as specified with document content ownership). ---@class cmp_dictionary.kit.LSP.AnnotatedTextEdit : cmp_dictionary.kit.LSP.TextEdit ---@field public annotationId cmp_dictionary.kit.LSP.ChangeAnnotationIdentifier The actual identifier of the change annotation ---@class cmp_dictionary.kit.LSP.ResourceOperation ---@field public kind string The resource operation kind. ---@field public annotationId? cmp_dictionary.kit.LSP.ChangeAnnotationIdentifier An optional annotation identifier describing the operation.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.CreateFileOptions ---@field public overwrite? boolean Overwrite existing file. Overwrite wins over `ignoreIfExists` ---@field public ignoreIfExists? boolean Ignore if exists. ---@class cmp_dictionary.kit.LSP.RenameFileOptions ---@field public overwrite? boolean Overwrite target if existing. Overwrite wins over `ignoreIfExists` ---@field public ignoreIfExists? boolean Ignores if target exists. ---@class cmp_dictionary.kit.LSP.DeleteFileOptions ---@field public recursive? boolean Delete the content recursively if a folder is denoted. ---@field public ignoreIfNotExists? boolean Ignore the operation if the file doesn't exist. ---@class cmp_dictionary.kit.LSP.FileOperationPattern ---@field public glob string The glob pattern to match. Glob patterns can have the following syntax:
- `*` to match one or more characters in a path segment
- `?` to match on one character in a path segment
- `**` to match any number of path segments, including none
- `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)
- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)
- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`) ---@field public matches? cmp_dictionary.kit.LSP.FileOperationPatternKind Whether to match files or folders with this pattern.

Matches both if undefined. ---@field public options? cmp_dictionary.kit.LSP.FileOperationPatternOptions Additional options used during matching. ---@class cmp_dictionary.kit.LSP.WorkspaceFullDocumentDiagnosticReport : cmp_dictionary.kit.LSP.FullDocumentDiagnosticReport ---@field public uri string The URI for which diagnostic information is reported. ---@field public version (integer | nil) The version number for which the diagnostics are reported.
If the document is not marked as open `null` can be provided. ---@class cmp_dictionary.kit.LSP.WorkspaceUnchangedDocumentDiagnosticReport : cmp_dictionary.kit.LSP.UnchangedDocumentDiagnosticReport ---@field public uri string The URI for which diagnostic information is reported. ---@field public version (integer | nil) The version number for which the diagnostics are reported.
If the document is not marked as open `null` can be provided. ---@class cmp_dictionary.kit.LSP.LSPObject ---@class cmp_dictionary.kit.LSP.NotebookCell ---@field public kind cmp_dictionary.kit.LSP.NotebookCellKind The cell's kind ---@field public document string The URI of the cell's text document
content. ---@field public metadata? cmp_dictionary.kit.LSP.LSPObject Additional metadata stored with the cell.

Note: should always be an object literal (e.g. LSPObject) ---@field public executionSummary? cmp_dictionary.kit.LSP.ExecutionSummary Additional execution summary information
if supported by the client. ---@class cmp_dictionary.kit.LSP.NotebookCellArrayChange ---@field public start integer The start oftest of the cell that changed. ---@field public deleteCount integer The deleted cells ---@field public cells? cmp_dictionary.kit.LSP.NotebookCell[] The new cells, if any ---@class cmp_dictionary.kit.LSP.ClientCapabilities ---@field public workspace? cmp_dictionary.kit.LSP.WorkspaceClientCapabilities Workspace specific client capabilities. ---@field public textDocument? cmp_dictionary.kit.LSP.TextDocumentClientCapabilities Text document specific client capabilities. ---@field public notebookDocument? cmp_dictionary.kit.LSP.NotebookDocumentClientCapabilities Capabilities specific to the notebook document support.

@since 3.17.0 ---@field public window? cmp_dictionary.kit.LSP.WindowClientCapabilities Window specific client capabilities. ---@field public general? cmp_dictionary.kit.LSP.GeneralClientCapabilities General client capabilities.

@since 3.16.0 ---@field public experimental? cmp_dictionary.kit.LSP.LSPAny Experimental client capabilities. ---@class cmp_dictionary.kit.LSP.TextDocumentSyncOptions ---@field public openClose? boolean Open and close notifications are sent to the server. If omitted open close notification should not
be sent. ---@field public change? cmp_dictionary.kit.LSP.TextDocumentSyncKind Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
and TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None. ---@field public willSave? boolean If present will save notifications are sent to the server. If omitted the notification should not be
sent. ---@field public willSaveWaitUntil? boolean If present will save wait until requests are sent to the server. If omitted the request should not be
sent. ---@field public save? (boolean | cmp_dictionary.kit.LSP.SaveOptions) If present save notifications are sent to the server. If omitted the notification should not be
sent. ---@class cmp_dictionary.kit.LSP.NotebookDocumentSyncOptions ---@field public notebookSelector ({ notebook: (string | cmp_dictionary.kit.LSP.NotebookDocumentFilter), cells?: { language: string }[] } | { notebook?: (string | cmp_dictionary.kit.LSP.NotebookDocumentFilter), cells: { language: string }[] })[] The notebooks to be synced ---@field public save? boolean Whether save notification should be forwarded to
the server. Will only be honored if mode === `notebook`. ---@class cmp_dictionary.kit.LSP.NotebookDocumentSyncRegistrationOptions : cmp_dictionary.kit.LSP.NotebookDocumentSyncOptions, cmp_dictionary.kit.LSP.StaticRegistrationOptions ---@class cmp_dictionary.kit.LSP.WorkspaceFoldersServerCapabilities ---@field public supported? boolean The server has support for workspace folders ---@field public changeNotifications? (string | boolean) Whether the server wants to receive workspace folder
change notifications.

If a string is provided the string is treated as an ID
under which the notification is registered on the client
side. The ID can be used to unregister for these events
using the `client/unregisterCapability` request. ---@class cmp_dictionary.kit.LSP.FileOperationOptions ---@field public didCreate? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving didCreateFiles notifications. ---@field public willCreate? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving willCreateFiles requests. ---@field public didRename? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving didRenameFiles notifications. ---@field public willRename? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving willRenameFiles requests. ---@field public didDelete? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving didDeleteFiles file notifications. ---@field public willDelete? cmp_dictionary.kit.LSP.FileOperationRegistrationOptions The server is interested in receiving willDeleteFiles file requests. ---@class cmp_dictionary.kit.LSP.CodeDescription ---@field public href string An URI to open with more information about the diagnostic error. ---@class cmp_dictionary.kit.LSP.DiagnosticRelatedInformation ---@field public location cmp_dictionary.kit.LSP.Location The location of this related diagnostic information. ---@field public message string The message of this related diagnostic information. ---@class cmp_dictionary.kit.LSP.ParameterInformation ---@field public label (string | (integer | integer)[]) The label of this parameter information.

Either a string or an inclusive start and exclusive end offsets within its containing
signature label. (see SignatureInformation.label). The offsets are based on a UTF-16
string representation as `Position` and `Range` does.

*Note*: a label of type string should be a substring of its containing signature label.
Its intended use case is to highlight the parameter label part in the `SignatureInformation.label`. ---@field public documentation? (string | cmp_dictionary.kit.LSP.MarkupContent) The human-readable doc-comment of this parameter. Will be shown
in the UI but can be omitted. ---@class cmp_dictionary.kit.LSP.NotebookCellTextDocumentFilter ---@field public notebook (string | cmp_dictionary.kit.LSP.NotebookDocumentFilter) A filter that matches against the notebook
containing the notebook cell. If a string
value is provided it matches against the
notebook type. '*' matches every notebook. ---@field public language? string A language id like `python`.

Will be matched against the language id of the
notebook cell document. '*' matches every language. ---@class cmp_dictionary.kit.LSP.FileOperationPatternOptions ---@field public ignoreCase? boolean The pattern should be matched ignoring casing. ---@class cmp_dictionary.kit.LSP.ExecutionSummary ---@field public executionOrder integer A strict monotonically increasing value
indicating the execution order of a cell
inside a notebook. ---@field public success? boolean Whether the execution was successful or
not if known by the client. ---@class cmp_dictionary.kit.LSP.WorkspaceClientCapabilities ---@field public applyEdit? boolean The client supports applying batch edits
to the workspace by supporting the request
'workspace/applyEdit' ---@field public workspaceEdit? cmp_dictionary.kit.LSP.WorkspaceEditClientCapabilities Capabilities specific to `WorkspaceEdit`s. ---@field public didChangeConfiguration? cmp_dictionary.kit.LSP.DidChangeConfigurationClientCapabilities Capabilities specific to the `workspace/didChangeConfiguration` notification. ---@field public didChangeWatchedFiles? cmp_dictionary.kit.LSP.DidChangeWatchedFilesClientCapabilities Capabilities specific to the `workspace/didChangeWatchedFiles` notification. ---@field public symbol? cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities Capabilities specific to the `workspace/symbol` request. ---@field public executeCommand? cmp_dictionary.kit.LSP.ExecuteCommandClientCapabilities Capabilities specific to the `workspace/executeCommand` request. ---@field public workspaceFolders? boolean The client has support for workspace folders.

@since 3.6.0 ---@field public configuration? boolean The client supports `workspace/configuration` requests.

@since 3.6.0 ---@field public semanticTokens? cmp_dictionary.kit.LSP.SemanticTokensWorkspaceClientCapabilities Capabilities specific to the semantic token requests scoped to the
workspace.

@since 3.16.0. ---@field public codeLens? cmp_dictionary.kit.LSP.CodeLensWorkspaceClientCapabilities Capabilities specific to the code lens requests scoped to the
workspace.

@since 3.16.0. ---@field public fileOperations? cmp_dictionary.kit.LSP.FileOperationClientCapabilities The client has support for file notifications/requests for user operations on files.

Since 3.16.0 ---@field public inlineValue? cmp_dictionary.kit.LSP.InlineValueWorkspaceClientCapabilities Capabilities specific to the inline values requests scoped to the
workspace.

@since 3.17.0. ---@field public inlayHint? cmp_dictionary.kit.LSP.InlayHintWorkspaceClientCapabilities Capabilities specific to the inlay hint requests scoped to the
workspace.

@since 3.17.0. ---@field public diagnostics? cmp_dictionary.kit.LSP.DiagnosticWorkspaceClientCapabilities Capabilities specific to the diagnostic requests scoped to the
workspace.

@since 3.17.0. ---@class cmp_dictionary.kit.LSP.TextDocumentClientCapabilities ---@field public synchronization? cmp_dictionary.kit.LSP.TextDocumentSyncClientCapabilities Defines which synchronization capabilities the client supports. ---@field public completion? cmp_dictionary.kit.LSP.CompletionClientCapabilities Capabilities specific to the `textDocument/completion` request. ---@field public hover? cmp_dictionary.kit.LSP.HoverClientCapabilities Capabilities specific to the `textDocument/hover` request. ---@field public signatureHelp? cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities Capabilities specific to the `textDocument/signatureHelp` request. ---@field public declaration? cmp_dictionary.kit.LSP.DeclarationClientCapabilities Capabilities specific to the `textDocument/declaration` request.

@since 3.14.0 ---@field public definition? cmp_dictionary.kit.LSP.DefinitionClientCapabilities Capabilities specific to the `textDocument/definition` request. ---@field public typeDefinition? cmp_dictionary.kit.LSP.TypeDefinitionClientCapabilities Capabilities specific to the `textDocument/typeDefinition` request.

@since 3.6.0 ---@field public implementation? cmp_dictionary.kit.LSP.ImplementationClientCapabilities Capabilities specific to the `textDocument/implementation` request.

@since 3.6.0 ---@field public references? cmp_dictionary.kit.LSP.ReferenceClientCapabilities Capabilities specific to the `textDocument/references` request. ---@field public documentHighlight? cmp_dictionary.kit.LSP.DocumentHighlightClientCapabilities Capabilities specific to the `textDocument/documentHighlight` request. ---@field public documentSymbol? cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities Capabilities specific to the `textDocument/documentSymbol` request. ---@field public codeAction? cmp_dictionary.kit.LSP.CodeActionClientCapabilities Capabilities specific to the `textDocument/codeAction` request. ---@field public codeLens? cmp_dictionary.kit.LSP.CodeLensClientCapabilities Capabilities specific to the `textDocument/codeLens` request. ---@field public documentLink? cmp_dictionary.kit.LSP.DocumentLinkClientCapabilities Capabilities specific to the `textDocument/documentLink` request. ---@field public colorProvider? cmp_dictionary.kit.LSP.DocumentColorClientCapabilities Capabilities specific to the `textDocument/documentColor` and the
`textDocument/colorPresentation` request.

@since 3.6.0 ---@field public formatting? cmp_dictionary.kit.LSP.DocumentFormattingClientCapabilities Capabilities specific to the `textDocument/formatting` request. ---@field public rangeFormatting? cmp_dictionary.kit.LSP.DocumentRangeFormattingClientCapabilities Capabilities specific to the `textDocument/rangeFormatting` request. ---@field public onTypeFormatting? cmp_dictionary.kit.LSP.DocumentOnTypeFormattingClientCapabilities Capabilities specific to the `textDocument/onTypeFormatting` request. ---@field public rename? cmp_dictionary.kit.LSP.RenameClientCapabilities Capabilities specific to the `textDocument/rename` request. ---@field public foldingRange? cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities Capabilities specific to the `textDocument/foldingRange` request.

@since 3.10.0 ---@field public selectionRange? cmp_dictionary.kit.LSP.SelectionRangeClientCapabilities Capabilities specific to the `textDocument/selectionRange` request.

@since 3.15.0 ---@field public publishDiagnostics? cmp_dictionary.kit.LSP.PublishDiagnosticsClientCapabilities Capabilities specific to the `textDocument/publishDiagnostics` notification. ---@field public callHierarchy? cmp_dictionary.kit.LSP.CallHierarchyClientCapabilities Capabilities specific to the various call hierarchy requests.

@since 3.16.0 ---@field public semanticTokens? cmp_dictionary.kit.LSP.SemanticTokensClientCapabilities Capabilities specific to the various semantic token request.

@since 3.16.0 ---@field public linkedEditingRange? cmp_dictionary.kit.LSP.LinkedEditingRangeClientCapabilities Capabilities specific to the `textDocument/linkedEditingRange` request.

@since 3.16.0 ---@field public moniker? cmp_dictionary.kit.LSP.MonikerClientCapabilities Client capabilities specific to the `textDocument/moniker` request.

@since 3.16.0 ---@field public typeHierarchy? cmp_dictionary.kit.LSP.TypeHierarchyClientCapabilities Capabilities specific to the various type hierarchy requests.

@since 3.17.0 ---@field public inlineValue? cmp_dictionary.kit.LSP.InlineValueClientCapabilities Capabilities specific to the `textDocument/inlineValue` request.

@since 3.17.0 ---@field public inlayHint? cmp_dictionary.kit.LSP.InlayHintClientCapabilities Capabilities specific to the `textDocument/inlayHint` request.

@since 3.17.0 ---@field public diagnostic? cmp_dictionary.kit.LSP.DiagnosticClientCapabilities Capabilities specific to the diagnostic pull model.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.NotebookDocumentClientCapabilities ---@field public synchronization cmp_dictionary.kit.LSP.NotebookDocumentSyncClientCapabilities Capabilities specific to notebook document synchronization

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.WindowClientCapabilities ---@field public workDoneProgress? boolean It indicates whether the client supports server initiated
progress using the `window/workDoneProgress/create` request.

The capability also controls Whether client supports handling
of progress notifications. If set servers are allowed to report a
`workDoneProgress` property in the request specific server
capabilities.

@since 3.15.0 ---@field public showMessage? cmp_dictionary.kit.LSP.ShowMessageRequestClientCapabilities Capabilities specific to the showMessage request.

@since 3.16.0 ---@field public showDocument? cmp_dictionary.kit.LSP.ShowDocumentClientCapabilities Capabilities specific to the showDocument request.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.GeneralClientCapabilities ---@field public staleRequestSupport? cmp_dictionary.kit.LSP.GeneralClientCapabilities.staleRequestSupport Client capability that signals how the client
handles stale requests (e.g. a request
for which the client will not process the response
anymore since the information is outdated).

@since 3.17.0 ---@field public regularExpressions? cmp_dictionary.kit.LSP.RegularExpressionsClientCapabilities Client capabilities specific to regular expressions.

@since 3.16.0 ---@field public markdown? cmp_dictionary.kit.LSP.MarkdownClientCapabilities Client capabilities specific to the client's markdown parser.

@since 3.16.0 ---@field public positionEncodings? cmp_dictionary.kit.LSP.PositionEncodingKind[] The position encodings supported by the client. Client and server
have to agree on the same position encoding to ensure that offsets
(e.g. character position in a line) are interpreted the same on both
sides.

To keep the protocol backwards compatible the following applies: if
the value 'utf-16' is missing from the array of position encodings
servers can assume that the client supports UTF-16. UTF-16 is
therefore a mandatory encoding.

If omitted it defaults to ['utf-16'].

Implementation considerations: since the conversion from one encoding
into another requires the content of the file / line the conversion
is best done where the file is read which is usually on the server
side.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.GeneralClientCapabilities.staleRequestSupport ---@field public cancel boolean The client will actively cancel the request. ---@field public retryOnContentModified string[] The list of requests for which the client
will retry the request if it receives a
response with error code `ContentModified` ---@class cmp_dictionary.kit.LSP.RelativePattern ---@field public baseUri (cmp_dictionary.kit.LSP.WorkspaceFolder | string) A workspace folder or a base URI to which this pattern will be matched
against relatively. ---@field public pattern cmp_dictionary.kit.LSP.Pattern The actual glob pattern; ---@class cmp_dictionary.kit.LSP.WorkspaceEditClientCapabilities ---@field public documentChanges? boolean The client supports versioned document changes in `WorkspaceEdit`s ---@field public resourceOperations? cmp_dictionary.kit.LSP.ResourceOperationKind[] The resource operations the client supports. Clients should at least
support 'create', 'rename' and 'delete' files and folders.

@since 3.13.0 ---@field public failureHandling? cmp_dictionary.kit.LSP.FailureHandlingKind The failure handling strategy of a client if applying the workspace edit
fails.

@since 3.13.0 ---@field public normalizesLineEndings? boolean Whether the client normalizes line endings to the client specific
setting.
If set to `true` the client will normalize line ending characters
in a workspace edit to the client-specified new line
character.

@since 3.16.0 ---@field public changeAnnotationSupport? cmp_dictionary.kit.LSP.WorkspaceEditClientCapabilities.changeAnnotationSupport Whether the client in general supports change annotations on text edits,
create file, rename file and delete file changes.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.WorkspaceEditClientCapabilities.changeAnnotationSupport ---@field public groupsOnLabel? boolean Whether the client groups edits with equal labels into tree nodes,
for instance all edits labelled with "Changes in Strings" would
be a tree node. ---@class cmp_dictionary.kit.LSP.DidChangeConfigurationClientCapabilities ---@field public dynamicRegistration? boolean Did change configuration notification supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DidChangeWatchedFilesClientCapabilities ---@field public dynamicRegistration? boolean Did change watched files notification supports dynamic registration. Please note
that the current protocol doesn't support static configuration for file changes
from the server side. ---@field public relativePatternSupport? boolean Whether the client has support for {@link RelativePattern relative pattern}
or not.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities ---@field public dynamicRegistration? boolean Symbol request supports dynamic registration. ---@field public symbolKind? cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.symbolKind Specific capabilities for the `SymbolKind` in the `workspace/symbol` request. ---@field public tagSupport? cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.tagSupport The client supports tags on `SymbolInformation`.
Clients supporting tags have to handle unknown tags gracefully.

@since 3.16.0 ---@field public resolveSupport? cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.resolveSupport The client support partial workspace symbols. The client will send the
request `workspaceSymbol/resolve` to the server to resolve additional
properties.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.symbolKind ---@field public valueSet? cmp_dictionary.kit.LSP.SymbolKind[] The symbol kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.

If this property is not present the client only supports
the symbol kinds from `File` to `Array` as defined in
the initial version of the protocol. ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.tagSupport ---@field public valueSet cmp_dictionary.kit.LSP.SymbolTag[] The tags supported by the client. ---@class cmp_dictionary.kit.LSP.WorkspaceSymbolClientCapabilities.resolveSupport ---@field public properties string[] The properties that a client can resolve lazily. Usually
`location.range` ---@class cmp_dictionary.kit.LSP.ExecuteCommandClientCapabilities ---@field public dynamicRegistration? boolean Execute command supports dynamic registration. ---@class cmp_dictionary.kit.LSP.SemanticTokensWorkspaceClientCapabilities ---@field public refreshSupport? boolean Whether the client implementation supports a refresh request sent from
the server to the client.

Note that this event is global and will force the client to refresh all
semantic tokens currently shown. It should be used with absolute care
and is useful for situation where a server for example detects a project
wide change that requires such a calculation. ---@class cmp_dictionary.kit.LSP.CodeLensWorkspaceClientCapabilities ---@field public refreshSupport? boolean Whether the client implementation supports a refresh request sent from the
server to the client.

Note that this event is global and will force the client to refresh all
code lenses currently shown. It should be used with absolute care and is
useful for situation where a server for example detect a project wide
change that requires such a calculation. ---@class cmp_dictionary.kit.LSP.FileOperationClientCapabilities ---@field public dynamicRegistration? boolean Whether the client supports dynamic registration for file requests/notifications. ---@field public didCreate? boolean The client has support for sending didCreateFiles notifications. ---@field public willCreate? boolean The client has support for sending willCreateFiles requests. ---@field public didRename? boolean The client has support for sending didRenameFiles notifications. ---@field public willRename? boolean The client has support for sending willRenameFiles requests. ---@field public didDelete? boolean The client has support for sending didDeleteFiles notifications. ---@field public willDelete? boolean The client has support for sending willDeleteFiles requests. ---@class cmp_dictionary.kit.LSP.InlineValueWorkspaceClientCapabilities ---@field public refreshSupport? boolean Whether the client implementation supports a refresh request sent from the
server to the client.

Note that this event is global and will force the client to refresh all
inline values currently shown. It should be used with absolute care and is
useful for situation where a server for example detects a project wide
change that requires such a calculation. ---@class cmp_dictionary.kit.LSP.InlayHintWorkspaceClientCapabilities ---@field public refreshSupport? boolean Whether the client implementation supports a refresh request sent from
the server to the client.

Note that this event is global and will force the client to refresh all
inlay hints currently shown. It should be used with absolute care and
is useful for situation where a server for example detects a project wide
change that requires such a calculation. ---@class cmp_dictionary.kit.LSP.DiagnosticWorkspaceClientCapabilities ---@field public refreshSupport? boolean Whether the client implementation supports a refresh request sent from
the server to the client.

Note that this event is global and will force the client to refresh all
pulled diagnostics currently shown. It should be used with absolute care and
is useful for situation where a server for example detects a project wide
change that requires such a calculation. ---@class cmp_dictionary.kit.LSP.TextDocumentSyncClientCapabilities ---@field public dynamicRegistration? boolean Whether text document synchronization supports dynamic registration. ---@field public willSave? boolean The client supports sending will save notifications. ---@field public willSaveWaitUntil? boolean The client supports sending a will save request and
waits for a response providing text edits which will
be applied to the document before it is saved. ---@field public didSave? boolean The client supports did save notifications. ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities ---@field public dynamicRegistration? boolean Whether completion supports dynamic registration. ---@field public completionItem? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem The client supports the following `CompletionItem` specific
capabilities. ---@field public completionItemKind? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItemKind ---@field public insertTextMode? cmp_dictionary.kit.LSP.InsertTextMode Defines how the client handles whitespace and indentation
when accepting a completion item that uses multi line
text in either `insertText` or `textEdit`.

@since 3.17.0 ---@field public contextSupport? boolean The client supports to send additional context information for a
`textDocument/completion` request. ---@field public completionList? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionList The client supports the following `CompletionList` specific
capabilities.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem ---@field public snippetSupport? boolean Client supports snippets as insert text.

A snippet can define tab stops and placeholders with `$1`, `$2`
and `${3:foo}`. `$0` defines the final tab stop, it defaults to
the end of the snippet. Placeholders with equal identifiers are linked,
that is typing in one will update others too. ---@field public commitCharactersSupport? boolean Client supports commit characters on a completion item. ---@field public documentationFormat? cmp_dictionary.kit.LSP.MarkupKind[] Client supports the following content formats for the documentation
property. The order describes the preferred format of the client. ---@field public deprecatedSupport? boolean Client supports the deprecated property on a completion item. ---@field public preselectSupport? boolean Client supports the preselect property on a completion item. ---@field public tagSupport? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.tagSupport Client supports the tag property on a completion item. Clients supporting
tags have to handle unknown tags gracefully. Clients especially need to
preserve unknown tags when sending a completion item back to the server in
a resolve call.

@since 3.15.0 ---@field public insertReplaceSupport? boolean Client support insert replace edit to control different behavior if a
completion item is inserted in the text or should replace text.

@since 3.16.0 ---@field public resolveSupport? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.resolveSupport Indicates which properties a client can resolve lazily on a completion
item. Before version 3.16.0 only the predefined properties `documentation`
and `details` could be resolved lazily.

@since 3.16.0 ---@field public insertTextModeSupport? cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.insertTextModeSupport The client supports the `insertTextMode` property on
a completion item to override the whitespace handling mode
as defined by the client (see `insertTextMode`).

@since 3.16.0 ---@field public labelDetailsSupport? boolean The client has support for completion item label
details (see also `CompletionItemLabelDetails`).

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.tagSupport ---@field public valueSet cmp_dictionary.kit.LSP.CompletionItemTag[] The tags supported by the client. ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.resolveSupport ---@field public properties string[] The properties that a client can resolve lazily. ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItem.insertTextModeSupport ---@field public valueSet cmp_dictionary.kit.LSP.InsertTextMode[] ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionItemKind ---@field public valueSet? cmp_dictionary.kit.LSP.CompletionItemKind[] The completion item kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.

If this property is not present the client only supports
the completion items kinds from `Text` to `Reference` as defined in
the initial version of the protocol. ---@class cmp_dictionary.kit.LSP.CompletionClientCapabilities.completionList ---@field public itemDefaults? string[] The client supports the following itemDefaults on
a completion list.

The value lists the supported property names of the
`CompletionList.itemDefaults` object. If omitted
no properties are supported.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.HoverClientCapabilities ---@field public dynamicRegistration? boolean Whether hover supports dynamic registration. ---@field public contentFormat? cmp_dictionary.kit.LSP.MarkupKind[] Client supports the following content formats for the content
property. The order describes the preferred format of the client. ---@class cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities ---@field public dynamicRegistration? boolean Whether signature help supports dynamic registration. ---@field public signatureInformation? cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities.signatureInformation The client supports the following `SignatureInformation`
specific properties. ---@field public contextSupport? boolean The client supports to send additional context information for a
`textDocument/signatureHelp` request. A client that opts into
contextSupport will also support the `retriggerCharacters` on
`SignatureHelpOptions`.

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities.signatureInformation ---@field public documentationFormat? cmp_dictionary.kit.LSP.MarkupKind[] Client supports the following content formats for the documentation
property. The order describes the preferred format of the client. ---@field public parameterInformation? cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities.signatureInformation.parameterInformation Client capabilities specific to parameter information. ---@field public activeParameterSupport? boolean The client supports the `activeParameter` property on `SignatureInformation`
literal.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.SignatureHelpClientCapabilities.signatureInformation.parameterInformation ---@field public labelOffsetSupport? boolean The client supports processing label offsets instead of a
simple label string.

@since 3.14.0 ---@class cmp_dictionary.kit.LSP.DeclarationClientCapabilities ---@field public dynamicRegistration? boolean Whether declaration supports dynamic registration. If this is set to `true`
the client supports the new `DeclarationRegistrationOptions` return value
for the corresponding server capability as well. ---@field public linkSupport? boolean The client supports additional metadata in the form of declaration links. ---@class cmp_dictionary.kit.LSP.DefinitionClientCapabilities ---@field public dynamicRegistration? boolean Whether definition supports dynamic registration. ---@field public linkSupport? boolean The client supports additional metadata in the form of definition links.

@since 3.14.0 ---@class cmp_dictionary.kit.LSP.TypeDefinitionClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `TypeDefinitionRegistrationOptions` return value
for the corresponding server capability as well. ---@field public linkSupport? boolean The client supports additional metadata in the form of definition links.

Since 3.14.0 ---@class cmp_dictionary.kit.LSP.ImplementationClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `ImplementationRegistrationOptions` return value
for the corresponding server capability as well. ---@field public linkSupport? boolean The client supports additional metadata in the form of definition links.

@since 3.14.0 ---@class cmp_dictionary.kit.LSP.ReferenceClientCapabilities ---@field public dynamicRegistration? boolean Whether references supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DocumentHighlightClientCapabilities ---@field public dynamicRegistration? boolean Whether document highlight supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities ---@field public dynamicRegistration? boolean Whether document symbol supports dynamic registration. ---@field public symbolKind? cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities.symbolKind Specific capabilities for the `SymbolKind` in the
`textDocument/documentSymbol` request. ---@field public hierarchicalDocumentSymbolSupport? boolean The client supports hierarchical document symbols. ---@field public tagSupport? cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities.tagSupport The client supports tags on `SymbolInformation`. Tags are supported on
`DocumentSymbol` if `hierarchicalDocumentSymbolSupport` is set to true.
Clients supporting tags have to handle unknown tags gracefully.

@since 3.16.0 ---@field public labelSupport? boolean The client supports an additional label presented in the UI when
registering a document symbol provider.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities.symbolKind ---@field public valueSet? cmp_dictionary.kit.LSP.SymbolKind[] The symbol kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown.

If this property is not present the client only supports
the symbol kinds from `File` to `Array` as defined in
the initial version of the protocol. ---@class cmp_dictionary.kit.LSP.DocumentSymbolClientCapabilities.tagSupport ---@field public valueSet cmp_dictionary.kit.LSP.SymbolTag[] The tags supported by the client. ---@class cmp_dictionary.kit.LSP.CodeActionClientCapabilities ---@field public dynamicRegistration? boolean Whether code action supports dynamic registration. ---@field public codeActionLiteralSupport? cmp_dictionary.kit.LSP.CodeActionClientCapabilities.codeActionLiteralSupport The client support code action literals of type `CodeAction` as a valid
response of the `textDocument/codeAction` request. If the property is not
set the request can only return `Command` literals.

@since 3.8.0 ---@field public isPreferredSupport? boolean Whether code action supports the `isPreferred` property.

@since 3.15.0 ---@field public disabledSupport? boolean Whether code action supports the `disabled` property.

@since 3.16.0 ---@field public dataSupport? boolean Whether code action supports the `data` property which is
preserved between a `textDocument/codeAction` and a
`codeAction/resolve` request.

@since 3.16.0 ---@field public resolveSupport? cmp_dictionary.kit.LSP.CodeActionClientCapabilities.resolveSupport Whether the client supports resolving additional code action
properties via a separate `codeAction/resolve` request.

@since 3.16.0 ---@field public honorsChangeAnnotations? boolean Whether the client honors the change annotations in
text edits and resource operations returned via the
`CodeAction#edit` property by for example presenting
the workspace edit in the user interface and asking
for confirmation.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.CodeActionClientCapabilities.codeActionLiteralSupport ---@field public codeActionKind cmp_dictionary.kit.LSP.CodeActionClientCapabilities.codeActionLiteralSupport.codeActionKind The code action kind is support with the following value
set. ---@class cmp_dictionary.kit.LSP.CodeActionClientCapabilities.codeActionLiteralSupport.codeActionKind ---@field public valueSet cmp_dictionary.kit.LSP.CodeActionKind[] The code action kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown. ---@class cmp_dictionary.kit.LSP.CodeActionClientCapabilities.resolveSupport ---@field public properties string[] The properties that a client can resolve lazily. ---@class cmp_dictionary.kit.LSP.CodeLensClientCapabilities ---@field public dynamicRegistration? boolean Whether code lens supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DocumentLinkClientCapabilities ---@field public dynamicRegistration? boolean Whether document link supports dynamic registration. ---@field public tooltipSupport? boolean Whether the client supports the `tooltip` property on `DocumentLink`.

@since 3.15.0 ---@class cmp_dictionary.kit.LSP.DocumentColorClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `DocumentColorRegistrationOptions` return value
for the corresponding server capability as well. ---@class cmp_dictionary.kit.LSP.DocumentFormattingClientCapabilities ---@field public dynamicRegistration? boolean Whether formatting supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DocumentRangeFormattingClientCapabilities ---@field public dynamicRegistration? boolean Whether range formatting supports dynamic registration. ---@class cmp_dictionary.kit.LSP.DocumentOnTypeFormattingClientCapabilities ---@field public dynamicRegistration? boolean Whether on type formatting supports dynamic registration. ---@class cmp_dictionary.kit.LSP.RenameClientCapabilities ---@field public dynamicRegistration? boolean Whether rename supports dynamic registration. ---@field public prepareSupport? boolean Client supports testing for validity of rename operations
before execution.

@since 3.12.0 ---@field public prepareSupportDefaultBehavior? cmp_dictionary.kit.LSP.PrepareSupportDefaultBehavior Client supports the default behavior result.

The value indicates the default behavior used by the
client.

@since 3.16.0 ---@field public honorsChangeAnnotations? boolean Whether the client honors the change annotations in
text edits and resource operations returned via the
rename request's workspace edit by for example presenting
the workspace edit in the user interface and asking
for confirmation.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration for folding range
providers. If this is set to `true` the client supports the new
`FoldingRangeRegistrationOptions` return value for the corresponding
server capability as well. ---@field public rangeLimit? integer The maximum number of folding ranges that the client prefers to receive
per document. The value serves as a hint, servers are free to follow the
limit. ---@field public lineFoldingOnly? boolean If set, the client signals that it only supports folding complete lines.
If set, client will ignore specified `startCharacter` and `endCharacter`
properties in a FoldingRange. ---@field public foldingRangeKind? cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities.foldingRangeKind Specific options for the folding range kind.

@since 3.17.0 ---@field public foldingRange? cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities.foldingRange Specific options for the folding range.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities.foldingRangeKind ---@field public valueSet? cmp_dictionary.kit.LSP.FoldingRangeKind[] The folding range kind values the client supports. When this
property exists the client also guarantees that it will
handle values outside its set gracefully and falls back
to a default value when unknown. ---@class cmp_dictionary.kit.LSP.FoldingRangeClientCapabilities.foldingRange ---@field public collapsedText? boolean If set, the client signals that it supports setting collapsedText on
folding ranges to display custom labels instead of the default text.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.SelectionRangeClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration for selection range providers. If this is set to `true`
the client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server
capability as well. ---@class cmp_dictionary.kit.LSP.PublishDiagnosticsClientCapabilities ---@field public relatedInformation? boolean Whether the clients accepts diagnostics with related information. ---@field public tagSupport? cmp_dictionary.kit.LSP.PublishDiagnosticsClientCapabilities.tagSupport Client supports the tag property to provide meta data about a diagnostic.
Clients supporting tags have to handle unknown tags gracefully.

@since 3.15.0 ---@field public versionSupport? boolean Whether the client interprets the version property of the
`textDocument/publishDiagnostics` notification's parameter.

@since 3.15.0 ---@field public codeDescriptionSupport? boolean Client supports a codeDescription property

@since 3.16.0 ---@field public dataSupport? boolean Whether code action supports the `data` property which is
preserved between a `textDocument/publishDiagnostics` and
`textDocument/codeAction` request.

@since 3.16.0 ---@class cmp_dictionary.kit.LSP.PublishDiagnosticsClientCapabilities.tagSupport ---@field public valueSet cmp_dictionary.kit.LSP.DiagnosticTag[] The tags supported by the client. ---@class cmp_dictionary.kit.LSP.CallHierarchyClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@class cmp_dictionary.kit.LSP.SemanticTokensClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@field public requests cmp_dictionary.kit.LSP.SemanticTokensClientCapabilities.requests Which requests the client supports and might send to the server
depending on the server's capability. Please note that clients might not
show semantic tokens or degrade some of the user experience if a range
or full request is advertised by the client but not provided by the
server. If for example the client capability `requests.full` and
`request.range` are both set to true but the server only provides a
range provider the client might not render a minimap correctly or might
even decide to not show any semantic tokens at all. ---@field public tokenTypes string[] The token types that the client supports. ---@field public tokenModifiers string[] The token modifiers that the client supports. ---@field public formats cmp_dictionary.kit.LSP.TokenFormat[] The token formats the clients supports. ---@field public overlappingTokenSupport? boolean Whether the client supports tokens that can overlap each other. ---@field public multilineTokenSupport? boolean Whether the client supports tokens that can span multiple lines. ---@field public serverCancelSupport? boolean Whether the client allows the server to actively cancel a
semantic token request, e.g. supports returning
LSPErrorCodes.ServerCancelled. If a server does the client
needs to retrigger the request.

@since 3.17.0 ---@field public augmentsSyntaxTokens? boolean Whether the client uses semantic tokens to augment existing
syntax tokens. If set to `true` client side created syntax
tokens and semantic tokens are both used for colorization. If
set to `false` the client only uses the returned semantic tokens
for colorization.

If the value is `undefined` then the client behavior is not
specified.

@since 3.17.0 ---@class cmp_dictionary.kit.LSP.SemanticTokensClientCapabilities.requests ---@field public range? (boolean | { }) The client will send the `textDocument/semanticTokens/range` request if
the server provides a corresponding handler. ---@field public full? (boolean | { delta?: boolean }) The client will send the `textDocument/semanticTokens/full` request if
the server provides a corresponding handler. ---@class cmp_dictionary.kit.LSP.LinkedEditingRangeClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@class cmp_dictionary.kit.LSP.MonikerClientCapabilities ---@field public dynamicRegistration? boolean Whether moniker supports dynamic registration. If this is set to `true`
the client supports the new `MonikerRegistrationOptions` return value
for the corresponding server capability as well. ---@class cmp_dictionary.kit.LSP.TypeHierarchyClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@class cmp_dictionary.kit.LSP.InlineValueClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration for inline value providers. ---@class cmp_dictionary.kit.LSP.InlayHintClientCapabilities ---@field public dynamicRegistration? boolean Whether inlay hints support dynamic registration. ---@field public resolveSupport? cmp_dictionary.kit.LSP.InlayHintClientCapabilities.resolveSupport Indicates which properties a client can resolve lazily on an inlay
hint. ---@class cmp_dictionary.kit.LSP.InlayHintClientCapabilities.resolveSupport ---@field public properties string[] The properties that a client can resolve lazily. ---@class cmp_dictionary.kit.LSP.DiagnosticClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is set to `true`
the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@field public relatedDocumentSupport? boolean Whether the clients supports related documents for document diagnostic pulls. ---@class cmp_dictionary.kit.LSP.NotebookDocumentSyncClientCapabilities ---@field public dynamicRegistration? boolean Whether implementation supports dynamic registration. If this is
set to `true` the client supports the new
`(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
return value for the corresponding server capability as well. ---@field public executionSummarySupport? boolean The client supports sending execution summary data per cell. ---@class cmp_dictionary.kit.LSP.ShowMessageRequestClientCapabilities ---@field public messageActionItem? cmp_dictionary.kit.LSP.ShowMessageRequestClientCapabilities.messageActionItem Capabilities specific to the `MessageActionItem` type. ---@class cmp_dictionary.kit.LSP.ShowMessageRequestClientCapabilities.messageActionItem ---@field public additionalPropertiesSupport? boolean Whether the client supports additional attributes which
are preserved and send back to the server in the
request's response. ---@class cmp_dictionary.kit.LSP.ShowDocumentClientCapabilities ---@field public support boolean The client has support for the showDocument
request. ---@class cmp_dictionary.kit.LSP.RegularExpressionsClientCapabilities ---@field public engine string The engine's name. ---@field public version? string The engine's version. ---@class cmp_dictionary.kit.LSP.MarkdownClientCapabilities ---@field public parser string The name of the parser. ---@field public version? string The version of the parser. ---@field public allowedTags? string[] A list of HTML tags that the client allows / supports in
Markdown.

@since 3.17.0 ---@alias cmp_dictionary.kit.LSP.TextDocumentImplementationResponse (cmp_dictionary.kit.LSP.Definition | cmp_dictionary.kit.LSP.DefinitionLink[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentTypeDefinitionResponse (cmp_dictionary.kit.LSP.Definition | cmp_dictionary.kit.LSP.DefinitionLink[] | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceWorkspaceFoldersResponse (cmp_dictionary.kit.LSP.WorkspaceFolder[] | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceConfigurationResponse cmp_dictionary.kit.LSP.LSPAny[] ---@alias cmp_dictionary.kit.LSP.TextDocumentDocumentColorResponse cmp_dictionary.kit.LSP.ColorInformation[] ---@alias cmp_dictionary.kit.LSP.TextDocumentColorPresentationResponse cmp_dictionary.kit.LSP.ColorPresentation[] ---@alias cmp_dictionary.kit.LSP.TextDocumentFoldingRangeResponse (cmp_dictionary.kit.LSP.FoldingRange[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentDeclarationResponse (cmp_dictionary.kit.LSP.Declaration | cmp_dictionary.kit.LSP.DeclarationLink[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentSelectionRangeResponse (cmp_dictionary.kit.LSP.SelectionRange[] | nil) ---@alias cmp_dictionary.kit.LSP.WindowWorkDoneProgressCreateResponse nil ---@alias cmp_dictionary.kit.LSP.TextDocumentPrepareCallHierarchyResponse (cmp_dictionary.kit.LSP.CallHierarchyItem[] | nil) ---@alias cmp_dictionary.kit.LSP.CallHierarchyIncomingCallsResponse (cmp_dictionary.kit.LSP.CallHierarchyIncomingCall[] | nil) ---@alias cmp_dictionary.kit.LSP.CallHierarchyOutgoingCallsResponse (cmp_dictionary.kit.LSP.CallHierarchyOutgoingCall[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentSemanticTokensFullResponse (cmp_dictionary.kit.LSP.SemanticTokens | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentSemanticTokensFullDeltaResponse (cmp_dictionary.kit.LSP.SemanticTokens | cmp_dictionary.kit.LSP.SemanticTokensDelta | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentSemanticTokensRangeResponse (cmp_dictionary.kit.LSP.SemanticTokens | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceSemanticTokensRefreshResponse nil ---@alias cmp_dictionary.kit.LSP.WindowShowDocumentResponse cmp_dictionary.kit.LSP.ShowDocumentResult ---@alias cmp_dictionary.kit.LSP.TextDocumentLinkedEditingRangeResponse (cmp_dictionary.kit.LSP.LinkedEditingRanges | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceWillCreateFilesResponse (cmp_dictionary.kit.LSP.WorkspaceEdit | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceWillRenameFilesResponse (cmp_dictionary.kit.LSP.WorkspaceEdit | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceWillDeleteFilesResponse (cmp_dictionary.kit.LSP.WorkspaceEdit | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentMonikerResponse (cmp_dictionary.kit.LSP.Moniker[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentPrepareTypeHierarchyResponse (cmp_dictionary.kit.LSP.TypeHierarchyItem[] | nil) ---@alias cmp_dictionary.kit.LSP.TypeHierarchySupertypesResponse (cmp_dictionary.kit.LSP.TypeHierarchyItem[] | nil) ---@alias cmp_dictionary.kit.LSP.TypeHierarchySubtypesResponse (cmp_dictionary.kit.LSP.TypeHierarchyItem[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentInlineValueResponse (cmp_dictionary.kit.LSP.InlineValue[] | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceInlineValueRefreshResponse nil ---@alias cmp_dictionary.kit.LSP.TextDocumentInlayHintResponse (cmp_dictionary.kit.LSP.InlayHint[] | nil) ---@alias cmp_dictionary.kit.LSP.InlayHintResolveResponse cmp_dictionary.kit.LSP.InlayHint ---@alias cmp_dictionary.kit.LSP.WorkspaceInlayHintRefreshResponse nil ---@alias cmp_dictionary.kit.LSP.TextDocumentDiagnosticResponse cmp_dictionary.kit.LSP.DocumentDiagnosticReport ---@alias cmp_dictionary.kit.LSP.WorkspaceDiagnosticResponse cmp_dictionary.kit.LSP.WorkspaceDiagnosticReport ---@alias cmp_dictionary.kit.LSP.WorkspaceDiagnosticRefreshResponse nil ---@alias cmp_dictionary.kit.LSP.ClientRegisterCapabilityResponse nil ---@alias cmp_dictionary.kit.LSP.ClientUnregisterCapabilityResponse nil ---@alias cmp_dictionary.kit.LSP.InitializeResponse cmp_dictionary.kit.LSP.InitializeResult ---@alias cmp_dictionary.kit.LSP.ShutdownResponse nil ---@alias cmp_dictionary.kit.LSP.WindowShowMessageRequestResponse (cmp_dictionary.kit.LSP.MessageActionItem | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentWillSaveWaitUntilResponse (cmp_dictionary.kit.LSP.TextEdit[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentCompletionResponse (cmp_dictionary.kit.LSP.CompletionItem[] | cmp_dictionary.kit.LSP.CompletionList | nil) ---@alias cmp_dictionary.kit.LSP.CompletionItemResolveResponse cmp_dictionary.kit.LSP.CompletionItem ---@alias cmp_dictionary.kit.LSP.TextDocumentHoverResponse (cmp_dictionary.kit.LSP.Hover | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentSignatureHelpResponse (cmp_dictionary.kit.LSP.SignatureHelp | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentDefinitionResponse (cmp_dictionary.kit.LSP.Definition | cmp_dictionary.kit.LSP.DefinitionLink[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentReferencesResponse (cmp_dictionary.kit.LSP.Location[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentDocumentHighlightResponse (cmp_dictionary.kit.LSP.DocumentHighlight[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentDocumentSymbolResponse (cmp_dictionary.kit.LSP.SymbolInformation[] | cmp_dictionary.kit.LSP.DocumentSymbol[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentCodeActionResponse ((cmp_dictionary.kit.LSP.Command | cmp_dictionary.kit.LSP.CodeAction)[] | nil) ---@alias cmp_dictionary.kit.LSP.CodeActionResolveResponse cmp_dictionary.kit.LSP.CodeAction ---@alias cmp_dictionary.kit.LSP.WorkspaceSymbolResponse (cmp_dictionary.kit.LSP.SymbolInformation[] | cmp_dictionary.kit.LSP.WorkspaceSymbol[] | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceSymbolResolveResponse cmp_dictionary.kit.LSP.WorkspaceSymbol ---@alias cmp_dictionary.kit.LSP.TextDocumentCodeLensResponse (cmp_dictionary.kit.LSP.CodeLens[] | nil) ---@alias cmp_dictionary.kit.LSP.CodeLensResolveResponse cmp_dictionary.kit.LSP.CodeLens ---@alias cmp_dictionary.kit.LSP.WorkspaceCodeLensRefreshResponse nil ---@alias cmp_dictionary.kit.LSP.TextDocumentDocumentLinkResponse (cmp_dictionary.kit.LSP.DocumentLink[] | nil) ---@alias cmp_dictionary.kit.LSP.DocumentLinkResolveResponse cmp_dictionary.kit.LSP.DocumentLink ---@alias cmp_dictionary.kit.LSP.TextDocumentFormattingResponse (cmp_dictionary.kit.LSP.TextEdit[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentRangeFormattingResponse (cmp_dictionary.kit.LSP.TextEdit[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentOnTypeFormattingResponse (cmp_dictionary.kit.LSP.TextEdit[] | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentRenameResponse (cmp_dictionary.kit.LSP.WorkspaceEdit | nil) ---@alias cmp_dictionary.kit.LSP.TextDocumentPrepareRenameResponse (cmp_dictionary.kit.LSP.PrepareRenameResult | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceExecuteCommandResponse (cmp_dictionary.kit.LSP.LSPAny | nil) ---@alias cmp_dictionary.kit.LSP.WorkspaceApplyEditResponse cmp_dictionary.kit.LSP.ApplyWorkspaceEditResult ---@alias cmp_dictionary.kit.LSP.Definition (cmp_dictionary.kit.LSP.Location | cmp_dictionary.kit.LSP.Location[]) ---@alias cmp_dictionary.kit.LSP.DefinitionLink cmp_dictionary.kit.LSP.LocationLink ---@alias cmp_dictionary.kit.LSP.LSPArray cmp_dictionary.kit.LSP.LSPAny[] ---@alias cmp_dictionary.kit.LSP.LSPAny (cmp_dictionary.kit.LSP.LSPObject | cmp_dictionary.kit.LSP.LSPArray | string | integer | integer | integer | boolean | nil) ---@alias cmp_dictionary.kit.LSP.Declaration (cmp_dictionary.kit.LSP.Location | cmp_dictionary.kit.LSP.Location[]) ---@alias cmp_dictionary.kit.LSP.DeclarationLink cmp_dictionary.kit.LSP.LocationLink ---@alias cmp_dictionary.kit.LSP.InlineValue (cmp_dictionary.kit.LSP.InlineValueText | cmp_dictionary.kit.LSP.InlineValueVariableLookup | cmp_dictionary.kit.LSP.InlineValueEvaluatableExpression) ---@alias cmp_dictionary.kit.LSP.DocumentDiagnosticReport (cmp_dictionary.kit.LSP.RelatedFullDocumentDiagnosticReport | cmp_dictionary.kit.LSP.RelatedUnchangedDocumentDiagnosticReport) ---@alias cmp_dictionary.kit.LSP.PrepareRenameResult (cmp_dictionary.kit.LSP.Range | { range: cmp_dictionary.kit.LSP.Range, placeholder: string } | { defaultBehavior: boolean }) ---@alias cmp_dictionary.kit.LSP.ProgressToken (integer | string) ---@alias cmp_dictionary.kit.LSP.DocumentSelector cmp_dictionary.kit.LSP.DocumentFilter[] ---@alias cmp_dictionary.kit.LSP.ChangeAnnotationIdentifier string ---@alias cmp_dictionary.kit.LSP.WorkspaceDocumentDiagnosticReport (cmp_dictionary.kit.LSP.WorkspaceFullDocumentDiagnosticReport | cmp_dictionary.kit.LSP.WorkspaceUnchangedDocumentDiagnosticReport) ---@alias cmp_dictionary.kit.LSP.TextDocumentContentChangeEvent ({ range: cmp_dictionary.kit.LSP.Range, rangeLength?: integer, text: string } | { text: string }) ---@alias cmp_dictionary.kit.LSP.MarkedString (string | { language: string, value: string }) ---@alias cmp_dictionary.kit.LSP.DocumentFilter (cmp_dictionary.kit.LSP.TextDocumentFilter | cmp_dictionary.kit.LSP.NotebookCellTextDocumentFilter) ---@alias cmp_dictionary.kit.LSP.GlobPattern (cmp_dictionary.kit.LSP.Pattern | cmp_dictionary.kit.LSP.RelativePattern) ---@alias cmp_dictionary.kit.LSP.TextDocumentFilter ({ language: string, scheme?: string, pattern?: string } | { language?: string, scheme: string, pattern?: string } | { language?: string, scheme?: string, pattern: string }) ---@alias cmp_dictionary.kit.LSP.NotebookDocumentFilter ({ notebookType: string, scheme?: string, pattern?: string } | { notebookType?: string, scheme: string, pattern?: string } | { notebookType?: string, scheme?: string, pattern: string }) ---@alias cmp_dictionary.kit.LSP.Pattern string return LSP