diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cf838951..fc534ef04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,8 @@ jobs: python-version: '3.8' - run: sudo apt update - run: sudo apt install --no-install-recommends -y x11-xserver-utils - - run: pip3 install mypy==0.910 flake8==3.9.2 yapf==0.31.0 --user + - run: pip3 install mypy==0.971 flake8==5.0.4 pyright==1.1.271 yapf==0.31.0 --user - run: echo "$HOME/.local/bin" >> $GITHUB_PATH - - run: mypy -p plugin + # - run: mypy -p plugin - run: flake8 plugin tests + - run: pyright plugin diff --git a/plugin/__init__.py b/plugin/__init__.py index 3daecfafb..5899c023c 100644 --- a/plugin/__init__.py +++ b/plugin/__init__.py @@ -8,7 +8,6 @@ from .core.protocol import Notification from .core.protocol import Request from .core.protocol import Response -from .core.protocol import WorkspaceFolder from .core.registry import LspTextCommand from .core.registry import LspWindowCommand from .core.sessions import AbstractPlugin @@ -23,6 +22,7 @@ from .core.url import uri_to_filename # deprecated from .core.version import __version__ from .core.views import MarkdownLangMap +from .core.workspace import WorkspaceFolder # This is the public API for LSP-* packages __all__ = [ diff --git a/plugin/code_actions.py b/plugin/code_actions.py index 74a301e56..e48ba2657 100644 --- a/plugin/code_actions.py +++ b/plugin/code_actions.py @@ -1,5 +1,6 @@ from .core.promise import Promise from .core.protocol import CodeAction +from .core.protocol import CodeActionKind from .core.protocol import Command from .core.protocol import Diagnostic from .core.protocol import Error @@ -8,7 +9,7 @@ from .core.registry import windows from .core.sessions import SessionBufferProtocol from .core.settings import userprefs -from .core.typing import Any, List, Dict, Callable, Optional, Tuple, Union +from .core.typing import Any, List, Dict, Callable, Optional, Tuple, Union, cast from .core.views import entire_content_region from .core.views import first_selection_region from .core.views import format_code_actions_for_quick_panel @@ -143,7 +144,7 @@ def _request_async( diagnostics = diags break if on_save_actions: - supported_kinds = session.get_capability('codeActionProvider.codeActionKinds') + supported_kinds = session.get_capability('codeActionProvider.codeActionKinds') # type: Optional[List[CodeActionKind]] # noqa matching_kinds = get_matching_kinds(on_save_actions, supported_kinds or []) if matching_kinds: params = text_document_code_action_params(view, region, diagnostics, matching_kinds, manual) @@ -162,7 +163,7 @@ def _request_async( def filtering_collector( config_name: str, - kinds: List[str], + kinds: List[CodeActionKind], actions_collector: CodeActionsCollector ) -> Tuple[Callable[[CodeActionsResponse], None], Callable[[Any], None]]: """ @@ -173,7 +174,7 @@ def filtering_collector( """ def actions_filter(actions: CodeActionsResponse) -> List[CodeActionOrCommand]: - return [a for a in (actions or []) if a.get('kind') in kinds] # type: ignore + return [a for a in (actions or []) if a.get('kind') in kinds] collector = actions_collector.create_collector(config_name) return ( @@ -185,7 +186,7 @@ def actions_filter(actions: CodeActionsResponse) -> List[CodeActionOrCommand]: actions_manager = CodeActionsManager() -def get_matching_kinds(user_actions: Dict[str, bool], session_actions: List[str]) -> List[str]: +def get_matching_kinds(user_actions: Dict[str, bool], session_actions: List[CodeActionKind]) -> List[CodeActionKind]: """ Filters user-enabled or disabled actions so that only ones matching the session actions are returned. Returned actions are those that are enabled and are not overridden by more @@ -199,7 +200,7 @@ def get_matching_kinds(user_actions: Dict[str, bool], session_actions: List[str] matching_kinds = [] for session_action in session_actions: enabled = False - action_parts = session_action.split('.') + action_parts = cast(str, session_action).split('.') for i in range(len(action_parts)): current_part = '.'.join(action_parts[0:i + 1]) user_value = user_actions.get(current_part, None) diff --git a/plugin/code_lens.py b/plugin/code_lens.py index 873e51d3d..87fa8eddb 100644 --- a/plugin/code_lens.py +++ b/plugin/code_lens.py @@ -1,5 +1,5 @@ -from .core.protocol import CodeLens, Error -from .core.typing import List, Tuple, Dict, Iterable, Generator, Union +from .core.protocol import CodeLens, CodeLensExtended, Error +from .core.typing import List, Tuple, Dict, Iterable, Generator, Union, cast from .core.registry import LspTextCommand from .core.registry import windows from .core.views import make_command_link @@ -33,8 +33,8 @@ def is_resolved(self) -> bool: """A code lens is considered resolved if the inner data contains the 'command' key.""" return 'command' in self.data or self.is_resolve_error - def to_lsp(self) -> CodeLens: - copy = self.data.copy() + def to_lsp(self) -> CodeLensExtended: + copy = cast(CodeLensExtended, self.data.copy()) copy['session_name'] = self.session_name return copy @@ -165,7 +165,7 @@ def render(self, mode: str) -> None: for index, lens in enumerate(self._flat_iteration()): self.view.add_regions(self._region_key(index), [lens.region], "", "", 0, [lens.small_html], accent) - def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLens, None, None]: + def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLensExtended, None, None]: region = self.view.line(region) for lens in self._flat_iteration(): if lens.is_resolved() and lens.region.intersects(region): @@ -178,19 +178,21 @@ def run(self, edit: sublime.Edit) -> None: listener = windows.listener_for_view(self.view) if not listener: return - code_lenses = [] # type: List[CodeLens] + code_lenses = [] # type: List[CodeLensExtended] for region in self.view.sel(): for sv in listener.session_views_async(): code_lenses.extend(sv.get_resolved_code_lenses_for_region(region)) if not code_lenses: return elif len(code_lenses) == 1: - command = code_lenses[0]["command"] + command = code_lenses[0].get("command") assert command + if not command: + return args = { "session_name": code_lenses[0]["session_name"], "command_name": command["command"], - "command_args": command["arguments"] + "command_args": command.get("arguments") } self.view.run_command("lsp_execute", args) else: @@ -199,16 +201,18 @@ def run(self, edit: sublime.Edit) -> None: lambda i: self.on_select(code_lenses, i) ) - def on_select(self, code_lenses: List[CodeLens], index: int) -> None: + def on_select(self, code_lenses: List[CodeLensExtended], index: int) -> None: try: code_lens = code_lenses[index] except IndexError: return - command = code_lens["command"] + command = code_lens.get("command") assert command + if not command: + return args = { "session_name": code_lens["session_name"], "command_name": command["command"], - "command_args": command["arguments"] + "command_args": command.get("arguments") } self.view.run_command("lsp_execute", args) diff --git a/plugin/completion.py b/plugin/completion.py index cf3b23703..edd90fbb5 100644 --- a/plugin/completion.py +++ b/plugin/completion.py @@ -1,6 +1,7 @@ from .core.edit import parse_text_edit from .core.logging import debug from .core.protocol import InsertReplaceEdit, TextEdit, Range, Request, InsertTextFormat, CompletionItem +from .core.protocol import MarkupContent, MarkedString, MarkupKind from .core.registry import LspTextCommand from .core.settings import userprefs from .core.typing import List, Dict, Optional, Generator, Union, cast @@ -47,13 +48,6 @@ def run_async() -> None: sublime.set_timeout_async(run_async) - def _format_documentation( - self, - content: Union[str, Dict[str, str]], - language_map: Optional[MarkdownLangMap] - ) -> str: - return minihtml(self.view, content, FORMAT_STRING | FORMAT_MARKUP_CONTENT, language_map) - def _handle_resolve_response_async(self, language_map: Optional[MarkdownLangMap], item: CompletionItem) -> None: detail = "" documentation = "" @@ -61,7 +55,7 @@ def _handle_resolve_response_async(self, language_map: Optional[MarkdownLangMap] detail = self._format_documentation(item.get('detail') or "", language_map) documentation = self._format_documentation(item.get("documentation") or "", language_map) if not documentation: - markdown = {"kind": "markdown", "value": "*No documentation available.*"} + markdown = {"kind": MarkupKind.Markdown, "value": "*No documentation available.*"} # type: MarkupContent # No need for a language map here documentation = self._format_documentation(markdown, None) minihtml_content = "" @@ -85,6 +79,13 @@ def run_main() -> None: sublime.set_timeout(run_main) + def _format_documentation( + self, + content: Union[MarkedString, MarkupContent], + language_map: Optional[MarkdownLangMap] + ) -> str: + return minihtml(self.view, content, FORMAT_STRING | FORMAT_MARKUP_CONTENT, language_map) + def _on_navigate(self, url: str) -> None: webbrowser.open(url) diff --git a/plugin/core/edit.py b/plugin/core/edit.py index b1c833286..275934dee 100644 --- a/plugin/core/edit.py +++ b/plugin/core/edit.py @@ -1,8 +1,8 @@ from .logging import debug from .open import open_file from .promise import Promise -from .protocol import UINT_MAX, TextEdit as LspTextEdit, Position -from .typing import List, Dict, Any, Optional, Tuple +from .protocol import UINT_MAX, TextEdit as LspTextEdit, Position, WorkspaceEdit +from .typing import List, Dict, Optional, Tuple from functools import partial import sublime @@ -11,7 +11,7 @@ TextEditTuple = Tuple[Tuple[int, int], Tuple[int, int], str, Optional[int]] -def parse_workspace_edit(workspace_edit: Dict[str, Any]) -> Dict[str, List[TextEditTuple]]: +def parse_workspace_edit(workspace_edit: WorkspaceEdit) -> Dict[str, List[TextEditTuple]]: changes = {} # type: Dict[str, List[TextEditTuple]] document_changes = workspace_edit.get('documentChanges') if isinstance(document_changes, list): @@ -37,7 +37,7 @@ def parse_range(range: Position) -> Tuple[int, int]: return range['line'], min(UINT_MAX, range['character']) -def parse_text_edit(text_edit: LspTextEdit, version: int = None) -> TextEditTuple: +def parse_text_edit(text_edit: LspTextEdit, version: Optional[int] = None) -> TextEditTuple: return ( parse_range(text_edit['range']['start']), parse_range(text_edit['range']['end']), diff --git a/plugin/core/file_watcher.py b/plugin/core/file_watcher.py index 3a4fb2d8a..f4fa103a4 100644 --- a/plugin/core/file_watcher.py +++ b/plugin/core/file_watcher.py @@ -1,10 +1,10 @@ -from .protocol import FileChangeType, FileChangeTypeCreated, FileChangeTypeChanged, FileChangeTypeDeleted -from .protocol import WatchKind, WatchKindCreate, WatchKindChange, WatchKindDelete +from .protocol import FileChangeType +from .protocol import WatchKind from .typing import List, Literal, Optional, Protocol, Tuple, Type, Union from abc import ABCMeta from abc import abstractmethod -DEFAULT_KIND = WatchKindCreate | WatchKindChange | WatchKindDelete +DEFAULT_KIND = WatchKind.Create | WatchKind.Change | WatchKind.Delete FileWatcherEventType = Union[Literal['create'], Literal['change'], Literal['delete']] FilePath = str @@ -13,20 +13,20 @@ def lsp_watch_kind_to_file_watcher_event_types(kind: WatchKind) -> List[FileWatcherEventType]: event_types = [] # type: List[FileWatcherEventType] - if kind & WatchKindCreate: + if kind & WatchKind.Create: event_types.append('create') - if kind & WatchKindChange: + if kind & WatchKind.Change: event_types.append('change') - if kind & WatchKindDelete: + if kind & WatchKind.Delete: event_types.append('delete') return event_types def file_watcher_event_type_to_lsp_file_change_type(kind: FileWatcherEventType) -> FileChangeType: return { - 'create': FileChangeTypeCreated, - 'change': FileChangeTypeChanged, - 'delete': FileChangeTypeDeleted, + 'create': FileChangeType.Created, + 'change': FileChangeType.Changed, + 'delete': FileChangeType.Deleted, }[kind] diff --git a/plugin/core/logging.py b/plugin/core/logging.py index 720b52418..3ced4435f 100644 --- a/plugin/core/logging.py +++ b/plugin/core/logging.py @@ -24,7 +24,7 @@ def trace() -> None: debug("TRACE (unknown frame)") return previous_frame = current_frame.f_back - file_name, line_number, function_name, _, __ = inspect.getframeinfo(previous_frame) # type: ignore + file_name, line_number, function_name, _, _ = inspect.getframeinfo(previous_frame) # type: ignore file_name = file_name[len(sublime.packages_path()) + len("/LSP/"):] debug("TRACE {0:<32} {1}:{2}".format(function_name, file_name, line_number)) diff --git a/plugin/core/promise.py b/plugin/core/promise.py index 6151e707c..4e68b400b 100644 --- a/plugin/core/promise.py +++ b/plugin/core/promise.py @@ -1,16 +1,16 @@ from .typing import Callable, Generic, List, Optional, Protocol, Tuple, TypeVar, Union import functools -import sublime import threading T = TypeVar('T') +S = TypeVar('S') TExecutor = TypeVar('TExecutor') T_contra = TypeVar('T_contra', contravariant=True) TResult = TypeVar('TResult') class ResolveFunc(Protocol[T_contra]): - def __call__(self, value: Union[T_contra, 'Promise[T_contra]']) -> None: + def __call__(self, resolve_value: T_contra) -> None: ... @@ -64,8 +64,8 @@ def process_value(value): Promise(do_work_async_1).then(do_more_work_async).then(process_value) """ - @classmethod - def resolve(cls, resolve_value: T) -> 'Promise[T]': + @staticmethod + def resolve(resolve_value: S) -> 'Promise[S]': """Immediately resolves a Promise. Convenience function for creating a Promise that gets immediately @@ -74,23 +74,13 @@ def resolve(cls, resolve_value: T) -> 'Promise[T]': Arguments: resolve_value: The value to resolve the promise with. """ - def executor_func(resolve_fn: ResolveFunc[T]) -> None: + def executor_func(resolve_fn: ResolveFunc[S]) -> None: resolve_fn(resolve_value) - return cls(executor_func) + return Promise(executor_func) - @classmethod - def on_main_thread(cls, value: T) -> 'Promise[T]': - """Return a promise that resolves on the main thread.""" - return Promise(lambda resolve: sublime.set_timeout(lambda: resolve(value))) - - @classmethod - def on_async_thread(cls, value: T) -> 'Promise[T]': - """Return a promise that resolves on the worker thread.""" - return Promise(lambda resolve: sublime.set_timeout_async(lambda: resolve(value))) - - @classmethod - def packaged_task(cls) -> PackagedTask[T]: + @staticmethod + def packaged_task() -> PackagedTask[S]: class Executor(Generic[TExecutor]): @@ -102,14 +92,14 @@ def __init__(self) -> None: def __call__(self, resolver: ResolveFunc[TExecutor]) -> None: self.resolver = resolver - executor = Executor() # type: Executor[T] - promise = cls(executor) + executor = Executor() # type: Executor[S] + promise = Promise(executor) assert callable(executor.resolver) return promise, executor.resolver - # Could also support passing plain T. - @classmethod - def all(cls, promises: List['Promise[T]']) -> 'Promise[List[T]]': + # Could also support passing plain S. + @staticmethod + def all(promises: List['Promise[S]']) -> 'Promise[List[S]]': """ Takes a list of promises and returns a Promise that gets resolved when all promises gets resolved. @@ -119,10 +109,10 @@ def all(cls, promises: List['Promise[T]']) -> 'Promise[List[T]]': :returns: A promise that gets resolved when all passed promises gets resolved. Gets passed a list with all resolved values. """ - def executor(resolve: ResolveFunc[List[T]]) -> None: + def executor(resolve: ResolveFunc[List[S]]) -> None: was_resolved = False - def recheck_resolve_status(_: T) -> None: + def recheck_resolve_status(_: S) -> None: nonlocal was_resolved # We're being called from a Promise that is holding a lock so don't try to use # any methods that would try to acquire it. @@ -150,7 +140,7 @@ def __init__(self, executor_func: ExecutorFunc[T]) -> None: self.resolved = False self.mutex = threading.Lock() self.callbacks = [] # type: List[ResolveFunc[T]] - executor_func(lambda value=None: self._do_resolve(value)) + executor_func(lambda resolve_value=None: self._do_resolve(resolve_value)) def __repr__(self) -> str: if self.resolved: diff --git a/plugin/core/protocol.py b/plugin/core/protocol.py index 62268a5dc..ab9995969 100644 --- a/plugin/core/protocol.py +++ b/plugin/core/protocol.py @@ -1,437 +1,5847 @@ -from .typing import Any, Dict, Iterable, List, Mapping, Optional, TypedDict, Union -from .url import filename_to_uri -import os +from .typing import Enum, IntEnum, IntFlag +from .typing import Any, Dict, Iterable, List, Literal, Mapping, NotRequired, Optional, TypedDict, Union import sublime INT_MAX = 2**31 - 1 UINT_MAX = INT_MAX -TextDocumentSyncKindNone = 0 -TextDocumentSyncKindFull = 1 -TextDocumentSyncKindIncremental = 2 +# AUTOGENERATED TYPES START - DO NOT EDIT MANUALLY AND INSTEAD CHANGE AT https://github.com/sublimelsp/lsp-python-types +URI = str +DocumentUri = str +Uint = int +RegExp = str + + +class SemanticTokenTypes(Enum): + """ A set of predefined token types. This set is not fixed + an clients can specify additional token types via the + corresponding client capabilities. + + @since 3.16.0 """ + Namespace = 'namespace' + Type = 'type' + """ Represents a generic type. Acts as a fallback for types which can't be mapped to + a specific type like class or enum. """ + 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' + """ @since 3.17.0 """ + + +class SemanticTokenModifiers(Enum): + """ A set of predefined token modifiers. This set is not fixed + an clients can specify additional token types via the + corresponding client capabilities. + + @since 3.16.0 """ + Declaration = 'declaration' + Definition = 'definition' + Readonly = 'readonly' + Static = 'static' + Deprecated = 'deprecated' + Abstract = 'abstract' + Async = 'async' + Modification = 'modification' + Documentation = 'documentation' + DefaultLibrary = 'defaultLibrary' + + +class DocumentDiagnosticReportKind(Enum): + """ The document diagnostic report kinds. + + @since 3.17.0 """ + Full = 'full' + """ A diagnostic report with a full + set of problems. """ + Unchanged = 'unchanged' + """ A report indicating that the last + returned report is still accurate. """ + + +class ErrorCodes(IntEnum): + """ Predefined error codes. """ + ParseError = -32700 + InvalidRequest = -32600 + MethodNotFound = -32601 + InvalidParams = -32602 + InternalError = -32603 + ServerNotInitialized = -32002 + """ Error code indicating that a server received a notification or + request before the server has received the `initialize` request. """ + UnknownErrorCode = -32001 + + +class LSPErrorCodes(IntEnum): + RequestFailed = -32803 + """ A request failed but it was syntactically correct, e.g the + method name was known and the parameters were valid. The error + message should contain human readable information about why + the request failed. + + @since 3.17.0 """ + ServerCancelled = -32802 + """ The server cancelled the request. This error code should + only be used for requests that explicitly support being + server cancellable. + + @since 3.17.0 """ + ContentModified = -32801 + """ The server detected that the content of a document got + modified outside normal conditions. A server should + NOT send this error code if it detects a content change + in it unprocessed messages. The result even computed + on an older state might still be useful for the client. + + If a client decides that a result is not of any use anymore + the client should cancel the request. """ + RequestCancelled = -32800 + """ The client has canceled a request and a server as detected + the cancel. """ + + +class FoldingRangeKind(Enum): + """ A set of predefined range kinds. """ + Comment = 'comment' + """ Folding range for a comment """ + Imports = 'imports' + """ Folding range for an import or include """ + Region = 'region' + """ Folding range for a region (e.g. `#region`) """ + + +class SymbolKind(IntEnum): + """ A symbol kind. """ + 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 + + +class SymbolTag(IntEnum): + """ Symbol tags are extra annotations that tweak the rendering of a symbol. + + @since 3.16 """ + Deprecated = 1 + """ Render a symbol as obsolete, usually using a strike-out. """ + + +class UniquenessLevel(Enum): + """ Moniker uniqueness level to define scope of the moniker. + + @since 3.16.0 """ + Document = 'document' + """ The moniker is only unique inside a document """ + Project = 'project' + """ The moniker is unique inside a project for which a dump got created """ + Group = 'group' + """ The moniker is unique inside the group to which a project belongs """ + Scheme = 'scheme' + """ The moniker is unique inside the moniker scheme. """ + Global = 'global' + """ The moniker is globally unique """ + + +class MonikerKind(Enum): + """ The moniker kind. + + @since 3.16.0 """ + Import = 'import' + """ The moniker represent a symbol that is imported into a project """ + Export = 'export' + """ The moniker represents a symbol that is exported from a project """ + Local = 'local' + """ The moniker represents a symbol that is local to a project (e.g. a local + variable of a function, a class not visible outside the project, ...) """ + + +class InlayHintKind(IntEnum): + """ Inlay hint kinds. + + @since 3.17.0 """ + Type = 1 + """ An inlay hint that for a type annotation. """ + Parameter = 2 + """ An inlay hint that is for a parameter. """ + + +class MessageType(IntEnum): + """ The message type """ + Error = 1 + """ An error message. """ + Warning = 2 + """ A warning message. """ + Info = 3 + """ An information message. """ + Log = 4 + """ A log message. """ + + +class TextDocumentSyncKind(IntEnum): + """ Defines how the host (editor) should sync + document changes to the language server. """ + None_ = 0 + """ Documents should not be synced at all. """ + Full = 1 + """ Documents are synced by always sending the full content + of the document. """ + Incremental = 2 + """ Documents are synced by sending the full content on open. + After that only incremental updates to the document are + send. """ + + +class TextDocumentSaveReason(IntEnum): + """ Represents reasons why a text document is saved. """ + Manual = 1 + """ Manually triggered, e.g. by the user pressing save, by starting debugging, + or by an API call. """ + AfterDelay = 2 + """ Automatic after a delay. """ + FocusOut = 3 + """ When the editor lost focus. """ + + +class CompletionItemKind(IntEnum): + """ The kind of a completion entry. """ + 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 + + +class CompletionItemTag(IntEnum): + """ Completion item tags are extra annotations that tweak the rendering of a completion + item. + + @since 3.15.0 """ + Deprecated = 1 + """ Render a completion as obsolete, usually using a strike-out. """ + + +class InsertTextFormat(IntEnum): + """ Defines whether the insert text in a completion item should be interpreted as + plain text or a snippet. """ + PlainText = 1 + """ The primary text to be inserted is treated as a plain string. """ + Snippet = 2 + """ The primary text to be inserted is treated as a snippet. + + 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. + + See also: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#snippet_syntax """ + + +class InsertTextMode(IntEnum): + """ How whitespace and indentation is handled during completion + item insertion. + + @since 3.16.0 """ + AsIs = 1 + """ The insertion or replace strings is taken as it is. If the + value is multi line the lines below the cursor will be + inserted using the indentation defined in the string value. + The client will not apply any kind of adjustments to the + string. """ + AdjustIndentation = 2 + """ The editor adjusts leading whitespace of new lines so that + they match the indentation up to the cursor of the line for + which the item is accepted. + + Consider a line like this: <2tabs><3tabs>foo. Accepting a + multi line completion item is indented using 2 tabs and all + following lines inserted will be indented using 2 tabs as well. """ + + +class DocumentHighlightKind(IntEnum): + """ A document highlight kind. """ + Text = 1 + """ A textual occurrence. """ + Read = 2 + """ Read-access of a symbol, like reading a variable. """ + Write = 3 + """ Write-access of a symbol, like writing to a variable. """ + + +class CodeActionKind(Enum): + """ A set of predefined code action kinds """ + Empty = '' + """ Empty kind. """ + QuickFix = 'quickfix' + """ Base kind for quickfix actions: 'quickfix' """ + Refactor = 'refactor' + """ Base kind for refactoring actions: 'refactor' """ + RefactorExtract = 'refactor.extract' + """ Base kind for refactoring extraction actions: 'refactor.extract' + + Example extract actions: + + - Extract method + - Extract function + - Extract variable + - Extract interface from class + - ... """ + RefactorInline = 'refactor.inline' + """ Base kind for refactoring inline actions: 'refactor.inline' + + Example inline actions: + + - Inline function + - Inline variable + - Inline constant + - ... """ + RefactorRewrite = 'refactor.rewrite' + """ Base kind for refactoring rewrite actions: 'refactor.rewrite' + + Example rewrite actions: + + - Convert JavaScript function to class + - Add or remove parameter + - Encapsulate field + - Make method static + - Move method to base class + - ... """ + Source = 'source' + """ Base kind for source actions: `source` + + Source code actions apply to the entire file. """ + SourceOrganizeImports = 'source.organizeImports' + """ Base kind for an organize imports source action: `source.organizeImports` """ + SourceFixAll = 'source.fixAll' + """ Base kind for auto-fix source actions: `source.fixAll`. + + Fix all actions automatically fix errors that have a clear fix that do not require user input. + They should not suppress errors or perform unsafe fixes such as generating new types or classes. + + @since 3.15.0 """ + + +class TraceValues(Enum): + Off = 'off' + """ Turn tracing off. """ + Messages = 'messages' + """ Trace messages only. """ + Verbose = 'verbose' + """ Verbose message tracing. """ + + +class MarkupKind(Enum): + """ Describes the content type that a client supports in various + result literals like `Hover`, `ParameterInfo` or `CompletionItem`. + + Please note that `MarkupKinds` must not start with a `$`. This kinds + are reserved for internal usage. """ + PlainText = 'plaintext' + """ Plain text is supported as a content format """ + Markdown = 'markdown' + """ Markdown is supported as a content format """ + + +class PositionEncodingKind(Enum): + """ A set of predefined position encoding kinds. + + @since 3.17.0 """ + UTF8 = 'utf-8' + """ Character offsets count UTF-8 code units. """ + UTF16 = 'utf-16' + """ Character offsets count UTF-16 code units. + + This is the default and must always be supported + by servers """ + UTF32 = 'utf-32' + """ Character offsets count UTF-32 code units. + + Implementation note: these are the same as Unicode code points, + so this `PositionEncodingKind` may also be used for an + encoding-agnostic representation of character offsets. """ + + +class FileChangeType(IntEnum): + """ The file event type """ + Created = 1 + """ The file got created. """ + Changed = 2 + """ The file got changed. """ + Deleted = 3 + """ The file got deleted. """ + + +class WatchKind(IntFlag): + Create = 1 + """ Interested in create events. """ + Change = 2 + """ Interested in change events """ + Delete = 4 + """ Interested in delete events """ + + +class DiagnosticSeverity(IntEnum): + """ The diagnostic's severity. """ + Error = 1 + """ Reports an error. """ + Warning = 2 + """ Reports a warning. """ + Information = 3 + """ Reports an information. """ + Hint = 4 + """ Reports a hint. """ + + +class DiagnosticTag(IntEnum): + """ The diagnostic tags. + + @since 3.15.0 """ + Unnecessary = 1 + """ Unused or unnecessary code. + + Clients are allowed to render diagnostics with this tag faded out instead of having + an error squiggle. """ + Deprecated = 2 + """ Deprecated or obsolete code. + + Clients are allowed to rendered diagnostics with this tag strike through. """ + + +class CompletionTriggerKind(IntEnum): + """ How a completion was triggered """ + Invoked = 1 + """ Completion was triggered by typing an identifier (24x7 code + complete), manual invocation (e.g Ctrl+Space) or via API. """ + TriggerCharacter = 2 + """ Completion was triggered by a trigger character specified by + the `triggerCharacters` properties of the `CompletionRegistrationOptions`. """ + TriggerForIncompleteCompletions = 3 + """ Completion was re-triggered as current completion list is incomplete """ + + +class SignatureHelpTriggerKind(IntEnum): + """ How a signature help was triggered. + + @since 3.15.0 """ + Invoked = 1 + """ Signature help was invoked manually by the user or by a command. """ + TriggerCharacter = 2 + """ Signature help was triggered by a trigger character. """ + ContentChange = 3 + """ Signature help was triggered by the cursor moving or by the document content changing. """ + + +class CodeActionTriggerKind(IntEnum): + """ The reason why code actions were requested. + + @since 3.17.0 """ + Invoked = 1 + """ Code actions were explicitly requested by the user or by an extension. """ + Automatic = 2 + """ Code actions were requested automatically. + + This typically happens when current selection in a file changes, but can + also be triggered when file content changes. """ + + +class FileOperationPatternKind(Enum): + """ A pattern kind describing if a glob pattern matches a file a folder or + both. + + @since 3.16.0 """ + File = 'file' + """ The pattern matches a file only. """ + Folder = 'folder' + """ The pattern matches a folder only. """ + + +class NotebookCellKind(IntEnum): + """ A notebook cell kind. + + @since 3.17.0 """ + Markup = 1 + """ A markup-cell is formatted source that is used for display. """ + Code = 2 + """ A code-cell is source code. """ + + +class ResourceOperationKind(Enum): + Create = 'create' + """ Supports creating new files and folders. """ + Rename = 'rename' + """ Supports renaming existing files and folders. """ + Delete = 'delete' + """ Supports deleting existing files and folders. """ + + +class FailureHandlingKind(Enum): + Abort = 'abort' + """ Applying the workspace change is simply aborted if one of the changes provided + fails. All operations executed before the failing operation stay executed. """ + Transactional = 'transactional' + """ All operations are executed transactional. That means they either all + succeed or no changes at all are applied to the workspace. """ + TextOnlyTransactional = 'textOnlyTransactional' + """ If the workspace edit contains only textual file changes they are executed transactional. + If resource changes (create, rename or delete file) are part of the change the failure + handling strategy is abort. """ + Undo = 'undo' + """ The client tries to undo the operations already executed. But there is no + guarantee that this is succeeding. """ + + +class PrepareSupportDefaultBehavior(IntEnum): + Identifier = 1 + """ The client's default behavior is to select the identifier + according the to language's syntax rule. """ + + +class TokenFormat(Enum): + Relative = 'relative' + + +Definition = Union['Location', List['Location']] +""" The definition of a symbol represented as one or many [locations](#Location). +For most programming languages there is only one location at which a symbol is +defined. + +Servers should prefer returning `DefinitionLink` over `Definition` if supported +by the client. """ + +DefinitionLink = 'LocationLink' +""" Information about where a symbol is defined. + +Provides additional metadata over normal [location](#Location) definitions, including the range of +the defining symbol """ + +LSPArray = List['LSPAny'] +""" LSP arrays. +@since 3.17.0 """ + +LSPAny = Union['LSPObject', 'LSPArray', str, int, Uint, float, bool, None] +""" The LSP any type. +Please note that strictly speaking a property with the value `undefined` +can't be converted into JSON preserving the property name. However for +convenience it is allowed and assumed that all these properties are +optional as well. +@since 3.17.0 """ + +Declaration = Union['Location', List['Location']] +""" The declaration of a symbol representation as one or many [locations](#Location). """ + +DeclarationLink = 'LocationLink' +""" Information about where a symbol is declared. + +Provides additional metadata over normal [location](#Location) declarations, including the range of +the declaring symbol. + +Servers should prefer returning `DeclarationLink` over `Declaration` if supported +by the client. """ + +InlineValue = Union['InlineValueText', 'InlineValueVariableLookup', 'InlineValueEvaluatableExpression'] +""" Inline value information can be provided by different means: +- directly as a text value (class InlineValueText). +- as a name to use for a variable lookup (class InlineValueVariableLookup) +- as an evaluatable expression (class InlineValueEvaluatableExpression) +The InlineValue types combines all inline value types into one type. + +@since 3.17.0 """ + +DocumentDiagnosticReport = Union['RelatedFullDocumentDiagnosticReport', 'RelatedUnchangedDocumentDiagnosticReport'] +""" The result of a document diagnostic pull request. A report can +either be a full report containing all diagnostics for the +requested document or an unchanged report indicating that nothing +has changed in terms of diagnostics in comparison to the last +pull request. + +@since 3.17.0 """ + +PrepareRenameResult = Union['Range', '__PrepareRenameResult_Type_1', '__PrepareRenameResult_Type_2'] + +ProgressToken = Union[int, str] + +DocumentSelector = List['DocumentFilter'] +""" A document selector is the combination of one or many document filters. + +@sample `let sel:DocumentSelector = [{ language: 'typescript' }, { language: 'json', pattern: '**∕tsconfig.json' }]`; + +The use of a string as a document filter is deprecated @since 3.16.0. """ + +ChangeAnnotationIdentifier = str +""" An identifier to refer to a change annotation stored with a workspace edit. """ + +WorkspaceDocumentDiagnosticReport = Union['WorkspaceFullDocumentDiagnosticReport', 'WorkspaceUnchangedDocumentDiagnosticReport'] +""" A workspace diagnostic document report. + +@since 3.17.0 """ + +TextDocumentContentChangeEvent = Union['__TextDocumentContentChangeEvent_Type_3', '__TextDocumentContentChangeEvent_Type_4'] +""" An event describing a change to a text document. If only a text is provided +it is considered to be the full content of the document. """ + +MarkedString = Union[str, '__MarkedString_Type_5'] +""" MarkedString can be used to render human readable text. It is either a markdown string +or a code-block that provides a language and a code snippet. The language identifier +is semantically equal to the optional language identifier in fenced code blocks in GitHub +issues. See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting + +The pair of a language and a value is an equivalent to markdown: +```${language} +${value} +``` + +Note that markdown strings will be sanitized - that means html will be escaped. +@deprecated use MarkupContent instead. """ + +DocumentFilter = Union['TextDocumentFilter', 'NotebookCellTextDocumentFilter'] +""" A document filter describes a top level text document or +a notebook cell document. + +@since 3.17.0 - proposed support for NotebookCellTextDocumentFilter. """ + +GlobPattern = Union['Pattern', 'RelativePattern'] +""" The glob pattern. Either a string pattern or a relative pattern. + +@since 3.17.0 """ + +TextDocumentFilter = Union['__TextDocumentFilter_Type_6', '__TextDocumentFilter_Type_7', '__TextDocumentFilter_Type_8'] +""" A document filter denotes a document by different properties like +the [language](#TextDocument.languageId), the [scheme](#Uri.scheme) of +its resource, or a glob-pattern that is applied to the [path](#TextDocument.fileName). + +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`) + +@sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }` +@sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**package.json' }` + +@since 3.17.0 """ + +NotebookDocumentFilter = Union['__NotebookDocumentFilter_Type_9', '__NotebookDocumentFilter_Type_10', '__NotebookDocumentFilter_Type_11'] +""" A notebook document filter denotes a notebook document by +different properties. The properties will be match +against the notebook's URI (same as with documents) + +@since 3.17.0 """ + +Pattern = str +""" The glob pattern to watch relative to the base path. 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 conditions (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`) + +@since 3.17.0 """ + + +ImplementationParams = TypedDict('ImplementationParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) + + +Location = TypedDict('Location', { + 'uri': 'DocumentUri', + 'range': 'Range', +}) +""" Represents a location inside a resource, such as a line +inside a text file. """ + + +ImplementationRegistrationOptions = TypedDict('ImplementationRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +TypeDefinitionParams = TypedDict('TypeDefinitionParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) + + +TypeDefinitionRegistrationOptions = TypedDict('TypeDefinitionRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +WorkspaceFolder = TypedDict('WorkspaceFolder', { + # The associated URI for this workspace folder. + 'uri': 'URI', + # The name of the workspace folder. Used to refer to this + # workspace folder in the user interface. + 'name': str, +}) +""" A workspace folder inside a client. """ + + +DidChangeWorkspaceFoldersParams = TypedDict('DidChangeWorkspaceFoldersParams', { + # The actual workspace folder change event. + 'event': 'WorkspaceFoldersChangeEvent', +}) +""" The parameters of a `workspace/didChangeWorkspaceFolders` notification. """ + + +ConfigurationParams = TypedDict('ConfigurationParams', { + 'items': List['ConfigurationItem'], +}) +""" The parameters of a configuration request. """ + + +PartialResultParams = TypedDict('PartialResultParams', { + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) + + +DocumentColorParams = TypedDict('DocumentColorParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [DocumentColorRequest](#DocumentColorRequest). """ + + +ColorInformation = TypedDict('ColorInformation', { + # The range in the document where this color appears. + 'range': 'Range', + # The actual color value for this color range. + 'color': 'Color', +}) +""" Represents a color range from a document. """ + + +DocumentColorRegistrationOptions = TypedDict('DocumentColorRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +ColorPresentationParams = TypedDict('ColorPresentationParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The color to request presentations for. + 'color': 'Color', + # The range where the color would be inserted. Serves as a context. + 'range': 'Range', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [ColorPresentationRequest](#ColorPresentationRequest). """ + + +ColorPresentation = TypedDict('ColorPresentation', { + # 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. + 'label': str, + # An [edit](#TextEdit) which is applied to a document when selecting + # this presentation for the color. When `falsy` the [label](#ColorPresentation.label) + # is used. + 'textEdit': NotRequired['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. + 'additionalTextEdits': NotRequired[List['TextEdit']], +}) + + +WorkDoneProgressOptions = TypedDict('WorkDoneProgressOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +TextDocumentRegistrationOptions = TypedDict('TextDocumentRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" General text document registration options. """ + + +FoldingRangeParams = TypedDict('FoldingRangeParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [FoldingRangeRequest](#FoldingRangeRequest). """ + + +FoldingRange = TypedDict('FoldingRange', { + # 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. + 'startLine': Uint, + # The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line. + 'startCharacter': NotRequired[Uint], + # 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. + 'endLine': Uint, + # The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line. + 'endCharacter': NotRequired[Uint], + # 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. + 'kind': NotRequired['FoldingRangeKind'], + # 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 + 'collapsedText': NotRequired[str], +}) +""" Represents a folding range. To be valid, start and end line must be bigger than zero and smaller +than the number of lines in the document. Clients are free to ignore invalid ranges. """ + + +FoldingRangeRegistrationOptions = TypedDict('FoldingRangeRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +DeclarationParams = TypedDict('DeclarationParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) + + +DeclarationRegistrationOptions = TypedDict('DeclarationRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +SelectionRangeParams = TypedDict('SelectionRangeParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The positions inside the text document. + 'positions': List['Position'], + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" A parameter literal used in selection range requests. """ + + +SelectionRange = TypedDict('SelectionRange', { + # The [range](#Range) of this selection range. + 'range': 'Range', + # The parent selection range containing this range. Therefore `parent.range` must contain `this.range`. + 'parent': NotRequired['SelectionRange'], +}) +""" A selection range represents a part of a selection hierarchy. A selection range +may have a parent selection range that contains it. """ + + +SelectionRangeRegistrationOptions = TypedDict('SelectionRangeRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +WorkDoneProgressCreateParams = TypedDict('WorkDoneProgressCreateParams', { + # The token to be used to report progress. + 'token': 'ProgressToken', +}) + + +WorkDoneProgressCancelParams = TypedDict('WorkDoneProgressCancelParams', { + # The token to be used to report progress. + 'token': 'ProgressToken', +}) + + +CallHierarchyPrepareParams = TypedDict('CallHierarchyPrepareParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `textDocument/prepareCallHierarchy` request. + +@since 3.16.0 """ + + +CallHierarchyItem = TypedDict('CallHierarchyItem', { + # The name of this item. + 'name': str, + # The kind of this item. + 'kind': 'SymbolKind', + # Tags for this item. + 'tags': NotRequired[List['SymbolTag']], + # More detail for this item, e.g. the signature of a function. + 'detail': NotRequired[str], + # The resource identifier of this item. + 'uri': 'DocumentUri', + # The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code. + 'range': '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). + 'selectionRange': 'Range', + # A data entry field that is preserved between a call hierarchy prepare and + # incoming calls or outgoing calls requests. + 'data': NotRequired['LSPAny'], +}) +""" Represents programming constructs like functions or constructors in the context +of call hierarchy. + +@since 3.16.0 """ + + +CallHierarchyRegistrationOptions = TypedDict('CallHierarchyRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Call hierarchy options used during static or dynamic registration. + +@since 3.16.0 """ + + +CallHierarchyIncomingCallsParams = TypedDict('CallHierarchyIncomingCallsParams', { + 'item': 'CallHierarchyItem', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `callHierarchy/incomingCalls` request. + +@since 3.16.0 """ + + +CallHierarchyIncomingCall = TypedDict('CallHierarchyIncomingCall', { + # The item that makes the call. + 'from': 'CallHierarchyItem', + # The ranges at which the calls appear. This is relative to the caller + # denoted by [`this.from`](#CallHierarchyIncomingCall.from). + 'fromRanges': List['Range'], +}) +""" Represents an incoming call, e.g. a caller of a method or constructor. + +@since 3.16.0 """ + + +CallHierarchyOutgoingCallsParams = TypedDict('CallHierarchyOutgoingCallsParams', { + 'item': 'CallHierarchyItem', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `callHierarchy/outgoingCalls` request. + +@since 3.16.0 """ + + +CallHierarchyOutgoingCall = TypedDict('CallHierarchyOutgoingCall', { + # The item that is called. + 'to': 'CallHierarchyItem', + # 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). + 'fromRanges': List['Range'], +}) +""" Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc. + +@since 3.16.0 """ + + +SemanticTokensParams = TypedDict('SemanticTokensParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" @since 3.16.0 """ + + +SemanticTokens = TypedDict('SemanticTokens', { + # 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. + 'resultId': NotRequired[str], + # The actual tokens. + 'data': List[Uint], +}) +""" @since 3.16.0 """ + + +SemanticTokensPartialResult = TypedDict('SemanticTokensPartialResult', { + 'data': List[Uint], +}) +""" @since 3.16.0 """ + + +SemanticTokensRegistrationOptions = TypedDict('SemanticTokensRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The legend used by the server + 'legend': 'SemanticTokensLegend', + # Server supports providing semantic tokens for a specific range + # of a document. + 'range': NotRequired[Union[bool, dict]], + # Server supports providing semantic tokens for a full document. + 'full': NotRequired[Union[bool, '__Full_Type_12']], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" @since 3.16.0 """ + + +SemanticTokensDeltaParams = TypedDict('SemanticTokensDeltaParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # 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. + 'previousResultId': str, + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" @since 3.16.0 """ + + +SemanticTokensDelta = TypedDict('SemanticTokensDelta', { + 'resultId': NotRequired[str], + # The semantic token edits to transform a previous result into a new result. + 'edits': List['SemanticTokensEdit'], +}) +""" @since 3.16.0 """ + + +SemanticTokensDeltaPartialResult = TypedDict('SemanticTokensDeltaPartialResult', { + 'edits': List['SemanticTokensEdit'], +}) +""" @since 3.16.0 """ + + +SemanticTokensRangeParams = TypedDict('SemanticTokensRangeParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The range the semantic tokens are requested for. + 'range': 'Range', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" @since 3.16.0 """ + + +ShowDocumentParams = TypedDict('ShowDocumentParams', { + # The document uri to show. + 'uri': 'URI', + # 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`. + 'external': NotRequired[bool], + # 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. + 'takeFocus': NotRequired[bool], + # 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. + 'selection': NotRequired['Range'], +}) +""" Params to show a document. + +@since 3.16.0 """ + + +ShowDocumentResult = TypedDict('ShowDocumentResult', { + # A boolean indicating if the show was successful. + 'success': bool, +}) +""" The result of a showDocument request. + +@since 3.16.0 """ + + +LinkedEditingRangeParams = TypedDict('LinkedEditingRangeParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) + + +LinkedEditingRanges = TypedDict('LinkedEditingRanges', { + # A list of ranges that can be edited together. The ranges must have + # identical length and contain identical text content. The ranges cannot overlap. + 'ranges': List['Range'], + # 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. + 'wordPattern': NotRequired[str], +}) +""" The result of a linked editing range request. + +@since 3.16.0 """ + + +LinkedEditingRangeRegistrationOptions = TypedDict('LinkedEditingRangeRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) + + +CreateFilesParams = TypedDict('CreateFilesParams', { + # An array of all files/folders created in this operation. + 'files': List['FileCreate'], +}) +""" The parameters sent in notifications/requests for user-initiated creation of +files. + +@since 3.16.0 """ + + +WorkspaceEdit = TypedDict('WorkspaceEdit', { + # Holds changes to existing resources. + 'changes': NotRequired[Dict['DocumentUri', List['TextEdit']]], + # 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. + 'documentChanges': NotRequired[List[Union['TextDocumentEdit', 'CreateFile', 'RenameFile', 'DeleteFile']]], + # 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 + 'changeAnnotations': NotRequired[Dict['ChangeAnnotationIdentifier', 'ChangeAnnotation']], +}) +""" A workspace edit represents changes to many resources managed in the workspace. The edit +should either provide `changes` or `documentChanges`. If documentChanges are present +they are preferred over `changes` if the client can handle versioned document edits. + +Since version 3.13.0 a workspace edit can contain resource operations as well. If resource +operations are present clients need to execute the operations in the order in which they +are provided. So a workspace edit for example can consist of the following two changes: +(1) a create file a.txt and (2) a text document edit which insert text into file a.txt. + +An invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will +cause failure of the operation. How the client recovers from the failure is described by +the client capability: `workspace.workspaceEdit.failureHandling` """ + + +FileOperationRegistrationOptions = TypedDict('FileOperationRegistrationOptions', { + # The actual filters. + 'filters': List['FileOperationFilter'], +}) +""" The options to register for file operations. + +@since 3.16.0 """ + + +RenameFilesParams = TypedDict('RenameFilesParams', { + # 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. + 'files': List['FileRename'], +}) +""" The parameters sent in notifications/requests for user-initiated renames of +files. + +@since 3.16.0 """ + + +DeleteFilesParams = TypedDict('DeleteFilesParams', { + # An array of all files/folders deleted in this operation. + 'files': List['FileDelete'], +}) +""" The parameters sent in notifications/requests for user-initiated deletes of +files. + +@since 3.16.0 """ + + +MonikerParams = TypedDict('MonikerParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) + + +Moniker = TypedDict('Moniker', { + # The scheme of the moniker. For example tsc or .Net + 'scheme': str, + # The identifier of the moniker. The value is opaque in LSIF however + # schema owners are allowed to define the structure if they want. + 'identifier': str, + # The scope in which the moniker is unique + 'unique': 'UniquenessLevel', + # The moniker kind if known. + 'kind': NotRequired['MonikerKind'], +}) +""" Moniker definition to match LSIF 0.5 moniker definition. + +@since 3.16.0 """ + + +MonikerRegistrationOptions = TypedDict('MonikerRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) + + +TypeHierarchyPrepareParams = TypedDict('TypeHierarchyPrepareParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `textDocument/prepareTypeHierarchy` request. + +@since 3.17.0 """ + + +TypeHierarchyItem = TypedDict('TypeHierarchyItem', { + # The name of this item. + 'name': str, + # The kind of this item. + 'kind': 'SymbolKind', + # Tags for this item. + 'tags': NotRequired[List['SymbolTag']], + # More detail for this item, e.g. the signature of a function. + 'detail': NotRequired[str], + # The resource identifier of this item. + 'uri': 'DocumentUri', + # The range enclosing this symbol not including leading/trailing whitespace + # but everything else, e.g. comments and code. + 'range': '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). + 'selectionRange': 'Range', + # 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. + 'data': NotRequired['LSPAny'], +}) +""" @since 3.17.0 """ + + +TypeHierarchyRegistrationOptions = TypedDict('TypeHierarchyRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Type hierarchy options used during static or dynamic registration. + +@since 3.17.0 """ + + +TypeHierarchySupertypesParams = TypedDict('TypeHierarchySupertypesParams', { + 'item': 'TypeHierarchyItem', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `typeHierarchy/supertypes` request. + +@since 3.17.0 """ + + +TypeHierarchySubtypesParams = TypedDict('TypeHierarchySubtypesParams', { + 'item': 'TypeHierarchyItem', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameter of a `typeHierarchy/subtypes` request. + +@since 3.17.0 """ + + +InlineValueParams = TypedDict('InlineValueParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The document range for which inline values should be computed. + 'range': 'Range', + # Additional information about the context in which inline values were + # requested. + 'context': 'InlineValueContext', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" A parameter literal used in inline value requests. + +@since 3.17.0 """ + + +InlineValueRegistrationOptions = TypedDict('InlineValueRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Inline value options used during static or dynamic registration. + +@since 3.17.0 """ + + +InlayHintParams = TypedDict('InlayHintParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The document range for which inlay hints should be computed. + 'range': 'Range', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" A parameter literal used in inlay hint requests. + +@since 3.17.0 """ + + +InlayHint = TypedDict('InlayHint', { + # The position of this hint. + 'position': 'Position', + # 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. + 'label': Union[str, List['InlayHintLabelPart']], + # The kind of this hint. Can be omitted in which case the client + # should fall back to a reasonable default. + 'kind': NotRequired['InlayHintKind'], + # 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. + 'textEdits': NotRequired[List['TextEdit']], + # The tooltip text when you hover over this item. + 'tooltip': NotRequired[Union[str, 'MarkupContent']], + # 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. + 'paddingLeft': NotRequired[bool], + # 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. + 'paddingRight': NotRequired[bool], + # A data entry field that is preserved on an inlay hint between + # a `textDocument/inlayHint` and a `inlayHint/resolve` request. + 'data': NotRequired['LSPAny'], +}) +""" Inlay hint information. + +@since 3.17.0 """ + + +InlayHintRegistrationOptions = TypedDict('InlayHintRegistrationOptions', { + # The server provides support to resolve additional + # information for an inlay hint item. + 'resolveProvider': NotRequired[bool], + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Inlay hint options used during static or dynamic registration. + +@since 3.17.0 """ + + +DocumentDiagnosticParams = TypedDict('DocumentDiagnosticParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The additional identifier provided during registration. + 'identifier': NotRequired[str], + # The result id of a previous response if provided. + 'previousResultId': NotRequired[str], + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters of the document diagnostic request. + +@since 3.17.0 """ + + +DocumentDiagnosticReportPartialResult = TypedDict('DocumentDiagnosticReportPartialResult', { + 'relatedDocuments': Dict['DocumentUri', Union['FullDocumentDiagnosticReport', 'UnchangedDocumentDiagnosticReport']], +}) +""" A partial result for a document diagnostic report. + +@since 3.17.0 """ + + +DiagnosticServerCancellationData = TypedDict('DiagnosticServerCancellationData', { + 'retriggerRequest': bool, +}) +""" Cancellation data returned from a diagnostic request. + +@since 3.17.0 """ + + +DiagnosticRegistrationOptions = TypedDict('DiagnosticRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # An optional identifier under which the diagnostics are + # managed by the client. + 'identifier': NotRequired[str], + # 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. + 'interFileDependencies': bool, + # The server provides support for workspace diagnostics as well. + 'workspaceDiagnostics': bool, + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Diagnostic registration options. + +@since 3.17.0 """ + + +WorkspaceDiagnosticParams = TypedDict('WorkspaceDiagnosticParams', { + # The additional identifier provided during registration. + 'identifier': NotRequired[str], + # The currently known diagnostic reports with their + # previous result ids. + 'previousResultIds': List['PreviousResultId'], + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters of the workspace diagnostic request. + +@since 3.17.0 """ + + +WorkspaceDiagnosticReport = TypedDict('WorkspaceDiagnosticReport', { + 'items': List['WorkspaceDocumentDiagnosticReport'], +}) +""" A workspace diagnostic report. + +@since 3.17.0 """ + + +WorkspaceDiagnosticReportPartialResult = TypedDict('WorkspaceDiagnosticReportPartialResult', { + 'items': List['WorkspaceDocumentDiagnosticReport'], +}) +""" A partial result for a workspace diagnostic report. + +@since 3.17.0 """ + + +DidOpenNotebookDocumentParams = TypedDict('DidOpenNotebookDocumentParams', { + # The notebook document that got opened. + 'notebookDocument': 'NotebookDocument', + # The text documents that represent the content + # of a notebook cell. + 'cellTextDocuments': List['TextDocumentItem'], +}) +""" The params sent in an open notebook document notification. + +@since 3.17.0 """ + + +DidChangeNotebookDocumentParams = TypedDict('DidChangeNotebookDocumentParams', { + # 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. + 'notebookDocument': 'VersionedNotebookDocumentIdentifier', + # 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. + 'change': 'NotebookDocumentChangeEvent', +}) +""" The params sent in a change notebook document notification. + +@since 3.17.0 """ + + +DidSaveNotebookDocumentParams = TypedDict('DidSaveNotebookDocumentParams', { + # The notebook document that got saved. + 'notebookDocument': 'NotebookDocumentIdentifier', +}) +""" The params sent in a save notebook document notification. + +@since 3.17.0 """ + + +DidCloseNotebookDocumentParams = TypedDict('DidCloseNotebookDocumentParams', { + # The notebook document that got closed. + 'notebookDocument': 'NotebookDocumentIdentifier', + # The text documents that represent the content + # of a notebook cell that got closed. + 'cellTextDocuments': List['TextDocumentIdentifier'], +}) +""" The params sent in a close notebook document notification. + +@since 3.17.0 """ + + +RegistrationParams = TypedDict('RegistrationParams', { + 'registrations': List['Registration'], +}) + + +UnregistrationParams = TypedDict('UnregistrationParams', { + 'unregisterations': List['Unregistration'], +}) + + +InitializeParams = TypedDict('InitializeParams', { + # 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. + 'processId': Union[int, None], + # Information about the client + # + # @since 3.15.0 + 'clientInfo': NotRequired['__ClientInfo_Type_13'], + # 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 + 'locale': NotRequired[str], + # The rootPath of the workspace. Is null + # if no folder is open. + # + # @deprecated in favour of rootUri. + 'rootPath': NotRequired[Union[str, None]], + # 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. + 'rootUri': Union['DocumentUri', None], + # The capabilities provided by the client (editor or tool) + 'capabilities': 'ClientCapabilities', + # User provided initialization options. + 'initializationOptions': NotRequired['LSPAny'], + # The initial trace setting. If omitted trace is disabled ('off'). + 'trace': NotRequired[Union[Literal['off'], Literal['messages'], Literal['compact'], Literal['verbose']]], + # 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 + 'workspaceFolders': NotRequired[Union[List['WorkspaceFolder'], None]], +}) + + +InitializeResult = TypedDict('InitializeResult', { + # The capabilities the language server provides. + 'capabilities': 'ServerCapabilities', + # Information about the server. + # + # @since 3.15.0 + 'serverInfo': NotRequired['__ServerInfo_Type_14'], +}) +""" The result returned from an initialize request. """ + + +InitializeError = TypedDict('InitializeError', { + # 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. + 'retry': bool, +}) +""" The data type of the ResponseError if the +initialize request fails. """ + + +InitializedParams = TypedDict('InitializedParams', { + +}) + + +DidChangeConfigurationParams = TypedDict('DidChangeConfigurationParams', { + # The actual changed settings + 'settings': 'LSPAny', +}) +""" The parameters of a change configuration notification. """ + + +DidChangeConfigurationRegistrationOptions = TypedDict('DidChangeConfigurationRegistrationOptions', { + 'section': NotRequired[Union[str, List[str]]], +}) + + +ShowMessageParams = TypedDict('ShowMessageParams', { + # The message type. See {@link MessageType} + 'type': 'MessageType', + # The actual message. + 'message': str, +}) +""" The parameters of a notification message. """ + + +ShowMessageRequestParams = TypedDict('ShowMessageRequestParams', { + # The message type. See {@link MessageType} + 'type': 'MessageType', + # The actual message. + 'message': str, + # The message action items to present. + 'actions': NotRequired[List['MessageActionItem']], +}) + + +MessageActionItem = TypedDict('MessageActionItem', { + # A short title like 'Retry', 'Open Log' etc. + 'title': str, +}) + + +LogMessageParams = TypedDict('LogMessageParams', { + # The message type. See {@link MessageType} + 'type': 'MessageType', + # The actual message. + 'message': str, +}) +""" The log message parameters. """ + + +DidOpenTextDocumentParams = TypedDict('DidOpenTextDocumentParams', { + # The document that was opened. + 'textDocument': 'TextDocumentItem', +}) +""" The parameters sent in an open text document notification """ + + +DidChangeTextDocumentParams = TypedDict('DidChangeTextDocumentParams', { + # The document that did change. The version number points + # to the version after all provided content changes have + # been applied. + 'textDocument': 'VersionedTextDocumentIdentifier', + # 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. + 'contentChanges': List['TextDocumentContentChangeEvent'], +}) +""" The change text document notification's parameters. """ + + +TextDocumentChangeRegistrationOptions = TypedDict('TextDocumentChangeRegistrationOptions', { + # How documents are synced to the server. + 'syncKind': 'TextDocumentSyncKind', + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Describe options to be used when registered for text document change events. """ + + +DidCloseTextDocumentParams = TypedDict('DidCloseTextDocumentParams', { + # The document that was closed. + 'textDocument': 'TextDocumentIdentifier', +}) +""" The parameters sent in a close text document notification """ + + +DidSaveTextDocumentParams = TypedDict('DidSaveTextDocumentParams', { + # The document that was saved. + 'textDocument': 'TextDocumentIdentifier', + # Optional the content when saved. Depends on the includeText value + # when the save notification was requested. + 'text': NotRequired[str], +}) +""" The parameters sent in a save text document notification """ + + +TextDocumentSaveRegistrationOptions = TypedDict('TextDocumentSaveRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # The client is supposed to include the content on save. + 'includeText': NotRequired[bool], +}) +""" Save registration options. """ + + +WillSaveTextDocumentParams = TypedDict('WillSaveTextDocumentParams', { + # The document that will be saved. + 'textDocument': 'TextDocumentIdentifier', + # The 'TextDocumentSaveReason'. + 'reason': 'TextDocumentSaveReason', +}) +""" The parameters sent in a will save text document notification. """ + + +TextEdit = TypedDict('TextEdit', { + # The range of the text document to be manipulated. To insert + # text into a document create a range where start === end. + 'range': 'Range', + # The string to be inserted. For delete operations use an + # empty string. + 'newText': str, +}) +""" A text edit applicable to a text document. """ + + +DidChangeWatchedFilesParams = TypedDict('DidChangeWatchedFilesParams', { + # The actual file events. + 'changes': List['FileEvent'], +}) +""" The watched files change notification's parameters. """ + + +DidChangeWatchedFilesRegistrationOptions = TypedDict('DidChangeWatchedFilesRegistrationOptions', { + # The watchers to register. + 'watchers': List['FileSystemWatcher'], +}) +""" Describe options to be used when registered for text document change events. """ + + +PublishDiagnosticsParams = TypedDict('PublishDiagnosticsParams', { + # The URI for which diagnostic information is reported. + 'uri': 'DocumentUri', + # Optional the version number of the document the diagnostics are published for. + # + # @since 3.15.0 + 'version': NotRequired[int], + # An array of diagnostic information items. + 'diagnostics': List['Diagnostic'], +}) +""" The publish diagnostic notification's parameters. """ + + +CompletionParams = TypedDict('CompletionParams', { + # The completion context. This is only available it the client specifies + # to send this using the client capability `textDocument.completion.contextSupport === true` + 'context': NotRequired['CompletionContext'], + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Completion parameters """ + + +CompletionItem = TypedDict('CompletionItem', { + # 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. + 'label': str, + # Additional details for the label + # + # @since 3.17.0 + 'labelDetails': NotRequired['CompletionItemLabelDetails'], + # The kind of this completion item. Based of the kind + # an icon is chosen by the editor. + 'kind': NotRequired['CompletionItemKind'], + # Tags for this completion item. + # + # @since 3.15.0 + 'tags': NotRequired[List['CompletionItemTag']], + # A human-readable string with additional information + # about this item, like type or symbol information. + 'detail': NotRequired[str], + # A human-readable string that represents a doc-comment. + 'documentation': NotRequired[Union[str, 'MarkupContent']], + # Indicates if this item is deprecated. + # @deprecated Use `tags` instead. + 'deprecated': NotRequired[bool], + # 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. + 'preselect': NotRequired[bool], + # A string that should be used when comparing this item + # with other items. When `falsy` the [label](#CompletionItem.label) + # is used. + 'sortText': NotRequired[str], + # A string that should be used when filtering a set of + # completion items. When `falsy` the [label](#CompletionItem.label) + # is used. + 'filterText': NotRequired[str], + # 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. + 'insertText': NotRequired[str], + # 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`. + 'insertTextFormat': NotRequired['InsertTextFormat'], + # 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 + 'insertTextMode': NotRequired['InsertTextMode'], + # 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` + 'textEdit': NotRequired[Union['TextEdit', 'InsertReplaceEdit']], + # 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 + 'textEditText': NotRequired[str], + # 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). + 'additionalTextEdits': NotRequired[List['TextEdit']], + # 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. + 'commitCharacters': NotRequired[List[str]], + # 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. + 'command': NotRequired['Command'], + # A data entry field that is preserved on a completion item between a + # [CompletionRequest](#CompletionRequest) and a [CompletionResolveRequest](#CompletionResolveRequest). + 'data': NotRequired['LSPAny'], +}) +""" A completion item represents a text snippet that is +proposed to complete text that is being typed. """ + + +CompletionList = TypedDict('CompletionList', { + # 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. + 'isIncomplete': bool, + # 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 + 'itemDefaults': NotRequired['__ItemDefaults_Type_15'], + # The completion items. + 'items': List['CompletionItem'], +}) +""" Represents a collection of [completion items](#CompletionItem) to be presented +in the editor. """ + + +CompletionRegistrationOptions = TypedDict('CompletionRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # 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`. + 'triggerCharacters': NotRequired[List[str]], + # 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 + 'allCommitCharacters': NotRequired[List[str]], + # The server provides support to resolve additional + # information for a completion item. + 'resolveProvider': NotRequired[bool], + # The server supports the following `CompletionItem` specific + # capabilities. + # + # @since 3.17.0 + 'completionItem': NotRequired['__CompletionItem_Type_17'], +}) +""" Registration options for a [CompletionRequest](#CompletionRequest). """ + + +HoverParams = TypedDict('HoverParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [HoverRequest](#HoverRequest). """ + + +Hover = TypedDict('Hover', { + # The hover's content + 'contents': Union['MarkupContent', 'MarkedString', List['MarkedString']], + # An optional range inside the text document that is used to + # visualize the hover, e.g. by changing the background color. + 'range': NotRequired['Range'], +}) +""" The result of a hover request. """ + + +HoverRegistrationOptions = TypedDict('HoverRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [HoverRequest](#HoverRequest). """ + + +SignatureHelpParams = TypedDict('SignatureHelpParams', { + # 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 + 'context': NotRequired['SignatureHelpContext'], + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [SignatureHelpRequest](#SignatureHelpRequest). """ + + +SignatureHelp = TypedDict('SignatureHelp', { + # One or more signatures. + 'signatures': List['SignatureInformation'], + # 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. + 'activeSignature': NotRequired[Uint], + # 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. + 'activeParameter': NotRequired[Uint], +}) +""" Signature help represents the signature of something +callable. There can be multiple signature but only one +active and only one active parameter. """ + + +SignatureHelpRegistrationOptions = TypedDict('SignatureHelpRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # List of characters that trigger signature help automatically. + 'triggerCharacters': NotRequired[List[str]], + # 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 + 'retriggerCharacters': NotRequired[List[str]], +}) +""" Registration options for a [SignatureHelpRequest](#SignatureHelpRequest). """ + + +DefinitionParams = TypedDict('DefinitionParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [DefinitionRequest](#DefinitionRequest). """ + + +DefinitionRegistrationOptions = TypedDict('DefinitionRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [DefinitionRequest](#DefinitionRequest). """ + + +ReferenceParams = TypedDict('ReferenceParams', { + 'context': 'ReferenceContext', + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [ReferencesRequest](#ReferencesRequest). """ + + +ReferenceRegistrationOptions = TypedDict('ReferenceRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [ReferencesRequest](#ReferencesRequest). """ + + +DocumentHighlightParams = TypedDict('DocumentHighlightParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [DocumentHighlightRequest](#DocumentHighlightRequest). """ + + +DocumentHighlight = TypedDict('DocumentHighlight', { + # The range this highlight applies to. + 'range': 'Range', + # The highlight kind, default is [text](#DocumentHighlightKind.Text). + 'kind': NotRequired['DocumentHighlightKind'], +}) +""" A document highlight is a range inside a text document which deserves +special attention. Usually a document highlight is visualized by changing +the background color of its range. """ + + +DocumentHighlightRegistrationOptions = TypedDict('DocumentHighlightRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [DocumentHighlightRequest](#DocumentHighlightRequest). """ + + +DocumentSymbolParams = TypedDict('DocumentSymbolParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" Parameters for a [DocumentSymbolRequest](#DocumentSymbolRequest). """ + + +SymbolInformation = TypedDict('SymbolInformation', { + # Indicates if this symbol is deprecated. + # + # @deprecated Use tags instead + 'deprecated': NotRequired[bool], + # 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. + 'location': 'Location', + # The name of this symbol. + 'name': str, + # The kind of this symbol. + 'kind': 'SymbolKind', + # Tags for this symbol. + # + # @since 3.16.0 + 'tags': NotRequired[List['SymbolTag']], + # 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. + 'containerName': NotRequired[str], +}) +""" Represents information about programming constructs like variables, classes, +interfaces etc. """ + + +DocumentSymbol = TypedDict('DocumentSymbol', { + # 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. + 'name': str, + # More detail for this symbol, e.g the signature of a function. + 'detail': NotRequired[str], + # The kind of this symbol. + 'kind': 'SymbolKind', + # Tags for this document symbol. + # + # @since 3.16.0 + 'tags': NotRequired[List['SymbolTag']], + # Indicates if this symbol is deprecated. + # + # @deprecated Use tags instead + 'deprecated': NotRequired[bool], + # 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. + 'range': '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`. + 'selectionRange': 'Range', + # Children of this symbol, e.g. properties of a class. + 'children': NotRequired[List['DocumentSymbol']], +}) +""" Represents programming constructs like variables, classes, interfaces etc. +that appear in a document. Document symbols can be hierarchical and they +have two ranges: one that encloses its definition and one that points to +its most interesting range, e.g. the range of an identifier. """ + + +DocumentSymbolRegistrationOptions = TypedDict('DocumentSymbolRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # A human-readable string that is shown when multiple outlines trees + # are shown for the same document. + # + # @since 3.16.0 + 'label': NotRequired[str], +}) +""" Registration options for a [DocumentSymbolRequest](#DocumentSymbolRequest). """ + + +CodeActionParams = TypedDict('CodeActionParams', { + # The document in which the command was invoked. + 'textDocument': 'TextDocumentIdentifier', + # The range for which the command was invoked. + 'range': 'Range', + # Context carrying additional information. + 'context': 'CodeActionContext', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [CodeActionRequest](#CodeActionRequest). """ + + +Command = TypedDict('Command', { + # Title of the command, like `save`. + 'title': str, + # The identifier of the actual command handler. + 'command': str, + # Arguments that the command handler should be + # invoked with. + 'arguments': NotRequired[List['LSPAny']], +}) +""" Represents a reference to a command. Provides a title which +will be used to represent a command in the UI and, optionally, +an array of arguments which will be passed to the command handler +function when invoked. """ + + +CodeAction = TypedDict('CodeAction', { + # A short, human-readable, title for this code action. + 'title': str, + # The kind of the code action. + # + # Used to filter code actions. + 'kind': NotRequired['CodeActionKind'], + # The diagnostics that this code action resolves. + 'diagnostics': NotRequired[List['Diagnostic']], + # 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 + 'isPreferred': NotRequired[bool], + # 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 + 'disabled': NotRequired['__Disabled_Type_18'], + # The workspace edit this code action performs. + 'edit': NotRequired['WorkspaceEdit'], + # 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. + 'command': NotRequired['Command'], + # A data entry field that is preserved on a code action between + # a `textDocument/codeAction` and a `codeAction/resolve` request. + # + # @since 3.16.0 + 'data': NotRequired['LSPAny'], +}) +""" A code action represents a change that can be performed in code, e.g. to fix a problem or +to refactor code. + +A CodeAction must set either `edit` and/or a `command`. If both are supplied, the `edit` is applied first, then the `command` is executed. """ + + +CodeActionRegistrationOptions = TypedDict('CodeActionRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # 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. + 'codeActionKinds': NotRequired[List['CodeActionKind']], + # The server provides support to resolve additional + # information for a code action. + # + # @since 3.16.0 + 'resolveProvider': NotRequired[bool], +}) +""" Registration options for a [CodeActionRequest](#CodeActionRequest). """ + + +WorkspaceSymbolParams = TypedDict('WorkspaceSymbolParams', { + # A query string to filter symbols by. Clients may send an empty + # string here to request all symbols. + 'query': str, + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest). """ + + +WorkspaceSymbol = TypedDict('WorkspaceSymbol', { + # 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. + 'location': Union['Location', '__Location_Type_19'], + # A data entry field that is preserved on a workspace symbol between a + # workspace symbol request and a workspace symbol resolve request. + 'data': NotRequired['LSPAny'], + # The name of this symbol. + 'name': str, + # The kind of this symbol. + 'kind': 'SymbolKind', + # Tags for this symbol. + # + # @since 3.16.0 + 'tags': NotRequired[List['SymbolTag']], + # 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. + 'containerName': NotRequired[str], +}) +""" A special workspace symbol that supports locations without a range. + +See also SymbolInformation. + +@since 3.17.0 """ + + +WorkspaceSymbolRegistrationOptions = TypedDict('WorkspaceSymbolRegistrationOptions', { + # The server provides support to resolve additional + # information for a workspace symbol. + # + # @since 3.17.0 + 'resolveProvider': NotRequired[bool], +}) +""" Registration options for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest). """ + + +CodeLensParams = TypedDict('CodeLensParams', { + # The document to request code lens for. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [CodeLensRequest](#CodeLensRequest). """ + + +CodeLens = TypedDict('CodeLens', { + # The range in which this code lens is valid. Should only span a single line. + 'range': 'Range', + # The command this code lens represents. + 'command': NotRequired['Command'], + # A data entry field that is preserved on a code lens item between + # a [CodeLensRequest](#CodeLensRequest) and a [CodeLensResolveRequest] + # (#CodeLensResolveRequest) + 'data': NotRequired['LSPAny'], +}) +""" A code lens represents a [command](#Command) that should be shown along with +source text, like the number of references, a way to run tests, etc. + +A code lens is _unresolved_ when no command is associated to it. For performance +reasons the creation of a code lens and resolving should be done in two stages. """ + + +CodeLensRegistrationOptions = TypedDict('CodeLensRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # Code lens has a resolve provider as well. + 'resolveProvider': NotRequired[bool], +}) +""" Registration options for a [CodeLensRequest](#CodeLensRequest). """ + + +DocumentLinkParams = TypedDict('DocumentLinkParams', { + # The document to provide document links for. + 'textDocument': 'TextDocumentIdentifier', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], + # An optional token that a server can use to report partial results (e.g. streaming) to + # the client. + 'partialResultToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [DocumentLinkRequest](#DocumentLinkRequest). """ + + +DocumentLink = TypedDict('DocumentLink', { + # The range this link applies to. + 'range': 'Range', + # The uri this link points to. If missing a resolve request is sent later. + 'target': NotRequired[str], + # 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 + 'tooltip': NotRequired[str], + # A data entry field that is preserved on a document link between a + # DocumentLinkRequest and a DocumentLinkResolveRequest. + 'data': NotRequired['LSPAny'], +}) +""" A document link is a range in a text document that links to an internal or external resource, like another +text document or a web site. """ + + +DocumentLinkRegistrationOptions = TypedDict('DocumentLinkRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # Document links have a resolve provider as well. + 'resolveProvider': NotRequired[bool], +}) +""" Registration options for a [DocumentLinkRequest](#DocumentLinkRequest). """ + + +DocumentFormattingParams = TypedDict('DocumentFormattingParams', { + # The document to format. + 'textDocument': 'TextDocumentIdentifier', + # The format options. + 'options': 'FormattingOptions', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [DocumentFormattingRequest](#DocumentFormattingRequest). """ + + +DocumentFormattingRegistrationOptions = TypedDict('DocumentFormattingRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [DocumentFormattingRequest](#DocumentFormattingRequest). """ + + +DocumentRangeFormattingParams = TypedDict('DocumentRangeFormattingParams', { + # The document to format. + 'textDocument': 'TextDocumentIdentifier', + # The range to format + 'range': 'Range', + # The format options + 'options': 'FormattingOptions', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest). """ + + +DocumentRangeFormattingRegistrationOptions = TypedDict('DocumentRangeFormattingRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], +}) +""" Registration options for a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest). """ + + +DocumentOnTypeFormattingParams = TypedDict('DocumentOnTypeFormattingParams', { + # The document to format. + 'textDocument': 'TextDocumentIdentifier', + # 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. + 'position': 'Position', + # 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). + 'ch': str, + # The formatting options. + 'options': 'FormattingOptions', +}) +""" The parameters of a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest). """ + + +DocumentOnTypeFormattingRegistrationOptions = TypedDict('DocumentOnTypeFormattingRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # A character on which formatting should be triggered, like `{`. + 'firstTriggerCharacter': str, + # More trigger characters. + 'moreTriggerCharacter': NotRequired[List[str]], +}) +""" Registration options for a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest). """ + + +RenameParams = TypedDict('RenameParams', { + # The document to rename. + 'textDocument': 'TextDocumentIdentifier', + # The position at which this request was sent. + 'position': 'Position', + # 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. + 'newName': str, + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [RenameRequest](#RenameRequest). """ + + +RenameRegistrationOptions = TypedDict('RenameRegistrationOptions', { + # A document selector to identify the scope of the registration. If set to null + # the document selector provided on the client side will be used. + 'documentSelector': Union['DocumentSelector', None], + # Renames should be checked and tested before being executed. + # + # @since version 3.12.0 + 'prepareProvider': NotRequired[bool], +}) +""" Registration options for a [RenameRequest](#RenameRequest). """ + + +PrepareRenameParams = TypedDict('PrepareRenameParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) + + +ExecuteCommandParams = TypedDict('ExecuteCommandParams', { + # The identifier of the actual command handler. + 'command': str, + # Arguments that the command should be invoked with. + 'arguments': NotRequired[List['LSPAny']], + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) +""" The parameters of a [ExecuteCommandRequest](#ExecuteCommandRequest). """ + + +ExecuteCommandRegistrationOptions = TypedDict('ExecuteCommandRegistrationOptions', { + # The commands to be executed on the server + 'commands': List[str], +}) +""" Registration options for a [ExecuteCommandRequest](#ExecuteCommandRequest). """ + + +ApplyWorkspaceEditParams = TypedDict('ApplyWorkspaceEditParams', { + # 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. + 'label': NotRequired[str], + # The edits to apply. + 'edit': 'WorkspaceEdit', +}) +""" The parameters passed via a apply workspace edit request. """ + + +ApplyWorkspaceEditResult = TypedDict('ApplyWorkspaceEditResult', { + # Indicates whether the edit was applied or not. + 'applied': bool, + # 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. + 'failureReason': NotRequired[str], + # 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. + 'failedChange': NotRequired[Uint], +}) +""" The result returned from the apply workspace edit request. + +@since 3.17 renamed from ApplyWorkspaceEditResponse """ + + +WorkDoneProgressBegin = TypedDict('WorkDoneProgressBegin', { + 'kind': Literal['begin'], + # Mandatory title of the progress operation. Used to briefly inform about + # the kind of operation being performed. + # + # Examples: "Indexing" or "Linking dependencies". + 'title': str, + # 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. + 'cancellable': NotRequired[bool], + # 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. + 'message': NotRequired[str], + # 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]. + 'percentage': NotRequired[Uint], +}) + + +WorkDoneProgressReport = TypedDict('WorkDoneProgressReport', { + 'kind': Literal['report'], + # 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. + 'cancellable': NotRequired[bool], + # 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. + 'message': NotRequired[str], + # 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] + 'percentage': NotRequired[Uint], +}) + + +WorkDoneProgressEnd = TypedDict('WorkDoneProgressEnd', { + 'kind': Literal['end'], + # Optional, a final message indicating to for example indicate the outcome + # of the operation. + 'message': NotRequired[str], +}) + + +SetTraceParams = TypedDict('SetTraceParams', { + 'value': 'TraceValues', +}) + + +LogTraceParams = TypedDict('LogTraceParams', { + 'message': str, + 'verbose': NotRequired[str], +}) + + +CancelParams = TypedDict('CancelParams', { + # The request id to cancel. + 'id': Union[int, str], +}) + + +ProgressParams = TypedDict('ProgressParams', { + # The progress token provided by the client or server. + 'token': 'ProgressToken', + # The progress data. + 'value': 'LSPAny', +}) + + +TextDocumentPositionParams = TypedDict('TextDocumentPositionParams', { + # The text document. + 'textDocument': 'TextDocumentIdentifier', + # The position inside the text document. + 'position': 'Position', +}) +""" A parameter literal used in requests to pass a text document and a position inside that +document. """ + + +WorkDoneProgressParams = TypedDict('WorkDoneProgressParams', { + # An optional token that a server can use to report work done progress. + 'workDoneToken': NotRequired['ProgressToken'], +}) + + +LocationLink = TypedDict('LocationLink', { + # Span of the origin of this link. + # + # Used as the underlined span for mouse interaction. Defaults to the word range at + # the definition position. + 'originSelectionRange': NotRequired['Range'], + # The target resource identifier of this link. + 'targetUri': 'DocumentUri', + # 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. + 'targetRange': '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` + 'targetSelectionRange': 'Range', +}) +""" Represents the connection of two locations. Provides additional metadata over normal [locations](#Location), +including an origin range. """ + + +Range = TypedDict('Range', { + # The range's start position. + 'start': 'Position', + # The range's end position. + 'end': 'Position', +}) +""" A range in a text document expressed as (zero-based) start and end positions. + +If you want to specify a range that contains a line including the line ending +character(s) then use an end position denoting the start of the next line. +For example: +```ts +{ + start: { line: 5, character: 23 } + end : { line 6, character : 0 } +} +``` """ + + +ImplementationOptions = TypedDict('ImplementationOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +StaticRegistrationOptions = TypedDict('StaticRegistrationOptions', { + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Static registration options to be returned in the initialize +request. """ + + +TypeDefinitionOptions = TypedDict('TypeDefinitionOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +WorkspaceFoldersChangeEvent = TypedDict('WorkspaceFoldersChangeEvent', { + # The array of added workspace folders + 'added': List['WorkspaceFolder'], + # The array of the removed workspace folders + 'removed': List['WorkspaceFolder'], +}) +""" The workspace folder change event. """ + + +ConfigurationItem = TypedDict('ConfigurationItem', { + # The scope to get the configuration section for. + 'scopeUri': NotRequired[str], + # The configuration section asked for. + 'section': NotRequired[str], +}) + + +TextDocumentIdentifier = TypedDict('TextDocumentIdentifier', { + # The text document's uri. + 'uri': 'DocumentUri', +}) +""" A literal to identify a text document in the client. """ + + +Color = TypedDict('Color', { + # The red component of this color in the range [0-1]. + 'red': float, + # The green component of this color in the range [0-1]. + 'green': float, + # The blue component of this color in the range [0-1]. + 'blue': float, + # The alpha component of this color in the range [0-1]. + 'alpha': float, +}) +""" Represents a color in RGBA space. """ + + +DocumentColorOptions = TypedDict('DocumentColorOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +FoldingRangeOptions = TypedDict('FoldingRangeOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +DeclarationOptions = TypedDict('DeclarationOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +Position = TypedDict('Position', { + # 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. + 'line': Uint, + # 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. + 'character': Uint, +}) +""" Position in a text document expressed as zero-based line and character +offset. Prior to 3.17 the offsets were always based on a UTF-16 string +representation. So a string of the form `a𐐀b` the character offset of the +character `a` is 0, the character offset of `𐐀` is 1 and the character +offset of b is 3 since `𐐀` is represented using two code units in UTF-16. +Since 3.17 clients and servers can agree on a different string encoding +representation (e.g. UTF-8). The client announces it's supported encoding +via the client capability [`general.positionEncodings`](#clientCapabilities). +The value is an array of position encodings the client supports, with +decreasing preference (e.g. the encoding at index `0` is the most preferred +one). To stay backwards compatible the only mandatory encoding is UTF-16 +represented via the string `utf-16`. The server can pick one of the +encodings offered by the client and signals that encoding back to the +client via the initialize result's property +[`capabilities.positionEncoding`](#serverCapabilities). If the string value +`utf-16` is missing from the client's capability `general.positionEncodings` +servers can safely assume that the client supports UTF-16. If the server +omits the position encoding in its initialize result the encoding defaults +to the string value `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. + +Positions are line end character agnostic. So you can not specify a position +that denotes `\r|\n` or `\n|` where `|` represents the character offset. + +@since 3.17.0 - support for negotiated position encoding. """ + + +SelectionRangeOptions = TypedDict('SelectionRangeOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +CallHierarchyOptions = TypedDict('CallHierarchyOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Call hierarchy options used during static registration. + +@since 3.16.0 """ + + +SemanticTokensOptions = TypedDict('SemanticTokensOptions', { + # The legend used by the server + 'legend': 'SemanticTokensLegend', + # Server supports providing semantic tokens for a specific range + # of a document. + 'range': NotRequired[Union[bool, dict]], + # Server supports providing semantic tokens for a full document. + 'full': NotRequired[Union[bool, '__Full_Type_20']], + 'workDoneProgress': NotRequired[bool], +}) +""" @since 3.16.0 """ + + +SemanticTokensEdit = TypedDict('SemanticTokensEdit', { + # The start offset of the edit. + 'start': Uint, + # The count of elements to remove. + 'deleteCount': Uint, + # The elements to insert. + 'data': NotRequired[List[Uint]], +}) +""" @since 3.16.0 """ + + +LinkedEditingRangeOptions = TypedDict('LinkedEditingRangeOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +FileCreate = TypedDict('FileCreate', { + # A file:// URI for the location of the file/folder being created. + 'uri': str, +}) +""" Represents information on a file/folder create. + +@since 3.16.0 """ + + +TextDocumentEdit = TypedDict('TextDocumentEdit', { + # The text document to change. + 'textDocument': 'OptionalVersionedTextDocumentIdentifier', + # The edits to be applied. + # + # @since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a + # client capability. + 'edits': List[Union['TextEdit', 'AnnotatedTextEdit']], +}) +""" Describes textual changes on a text document. A TextDocumentEdit describes all changes +on a document version Si and after they are applied move the document to version Si+1. +So the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any +kind of ordering. However the edits must be non overlapping. """ + + +CreateFile = TypedDict('CreateFile', { + # A create + 'kind': Literal['create'], + # The resource to create. + 'uri': 'DocumentUri', + # Additional options + 'options': NotRequired['CreateFileOptions'], + # An optional annotation identifier describing the operation. + # + # @since 3.16.0 + 'annotationId': NotRequired['ChangeAnnotationIdentifier'], +}) +""" Create file operation. """ + + +RenameFile = TypedDict('RenameFile', { + # A rename + 'kind': Literal['rename'], + # The old (existing) location. + 'oldUri': 'DocumentUri', + # The new location. + 'newUri': 'DocumentUri', + # Rename options. + 'options': NotRequired['RenameFileOptions'], + # An optional annotation identifier describing the operation. + # + # @since 3.16.0 + 'annotationId': NotRequired['ChangeAnnotationIdentifier'], +}) +""" Rename file operation """ + + +DeleteFile = TypedDict('DeleteFile', { + # A delete + 'kind': Literal['delete'], + # The file to delete. + 'uri': 'DocumentUri', + # Delete options. + 'options': NotRequired['DeleteFileOptions'], + # An optional annotation identifier describing the operation. + # + # @since 3.16.0 + 'annotationId': NotRequired['ChangeAnnotationIdentifier'], +}) +""" Delete file operation """ + + +ChangeAnnotation = TypedDict('ChangeAnnotation', { + # A human-readable string describing the actual change. The string + # is rendered prominent in the user interface. + 'label': str, + # A flag which indicates that user confirmation is needed + # before applying the change. + 'needsConfirmation': NotRequired[bool], + # A human-readable string which is rendered less prominent in + # the user interface. + 'description': NotRequired[str], +}) +""" Additional information that describes document changes. + +@since 3.16.0 """ + + +FileOperationFilter = TypedDict('FileOperationFilter', { + # A Uri scheme like `file` or `untitled`. + 'scheme': NotRequired[str], + # The actual file operation pattern. + 'pattern': 'FileOperationPattern', +}) +""" A filter to describe in which file operation requests or notifications +the server is interested in receiving. + +@since 3.16.0 """ + + +FileRename = TypedDict('FileRename', { + # A file:// URI for the original location of the file/folder being renamed. + 'oldUri': str, + # A file:// URI for the new location of the file/folder being renamed. + 'newUri': str, +}) +""" Represents information on a file/folder rename. + +@since 3.16.0 """ + + +FileDelete = TypedDict('FileDelete', { + # A file:// URI for the location of the file/folder being deleted. + 'uri': str, +}) +""" Represents information on a file/folder delete. + +@since 3.16.0 """ + + +MonikerOptions = TypedDict('MonikerOptions', { + 'workDoneProgress': NotRequired[bool], +}) + + +TypeHierarchyOptions = TypedDict('TypeHierarchyOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Type hierarchy options used during static registration. + +@since 3.17.0 """ + + +InlineValueContext = TypedDict('InlineValueContext', { + # The stack frame (as a DAP Id) where the execution has stopped. + 'frameId': int, + # The document range where execution has stopped. + # Typically the end position of the range denotes the line where the inline values are shown. + 'stoppedLocation': 'Range', +}) +""" @since 3.17.0 """ + + +InlineValueText = TypedDict('InlineValueText', { + # The document range for which the inline value applies. + 'range': 'Range', + # The text of the inline value. + 'text': str, +}) +""" Provide inline value as text. + +@since 3.17.0 """ + + +InlineValueVariableLookup = TypedDict('InlineValueVariableLookup', { + # The document range for which the inline value applies. + # The range is used to extract the variable name from the underlying document. + 'range': 'Range', + # If specified the name of the variable to look up. + 'variableName': NotRequired[str], + # How to perform the lookup. + 'caseSensitiveLookup': bool, +}) +""" Provide inline value through a variable lookup. +If only a range is specified, the variable name will be extracted from the underlying document. +An optional variable name can be used to override the extracted name. + +@since 3.17.0 """ + + +InlineValueEvaluatableExpression = TypedDict('InlineValueEvaluatableExpression', { + # The document range for which the inline value applies. + # The range is used to extract the evaluatable expression from the underlying document. + 'range': 'Range', + # If specified the expression overrides the extracted expression. + 'expression': NotRequired[str], +}) +""" Provide an inline value through an expression evaluation. +If only a range is specified, the expression will be extracted from the underlying document. +An optional expression can be used to override the extracted expression. + +@since 3.17.0 """ + + +InlineValueOptions = TypedDict('InlineValueOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Inline value options used during static registration. + +@since 3.17.0 """ + + +InlayHintLabelPart = TypedDict('InlayHintLabelPart', { + # The value of this label part. + 'value': str, + # 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. + 'tooltip': NotRequired[Union[str, 'MarkupContent']], + # 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. + 'location': NotRequired['Location'], + # An optional command for this label part. + # + # Depending on the client capability `inlayHint.resolveSupport` clients + # might resolve this property late using the resolve request. + 'command': NotRequired['Command'], +}) +""" An inlay hint label part allows for interactive and composite labels +of inlay hints. + +@since 3.17.0 """ + + +MarkupContent = TypedDict('MarkupContent', { + # The type of the Markup + 'kind': 'MarkupKind', + # The content itself + 'value': str, +}) +""" A `MarkupContent` literal represents a string value which content is interpreted base on its +kind flag. Currently the protocol supports `plaintext` and `markdown` as markup kinds. + +If the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues. +See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting + +Here is an example how such a string can be constructed using JavaScript / TypeScript: +```ts +let markdown: MarkdownContent = { + kind: MarkupKind.Markdown, + value: [ + '# Header', + 'Some text', + '```typescript', + 'someCode();', + '```' + ].join('\n') +}; +``` + +*Please Note* that clients might sanitize the return markdown. A client could decide to +remove HTML from the markdown to avoid script execution. """ + + +InlayHintOptions = TypedDict('InlayHintOptions', { + # The server provides support to resolve additional + # information for an inlay hint item. + 'resolveProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Inlay hint options used during static registration. + +@since 3.17.0 """ + + +RelatedFullDocumentDiagnosticReport = TypedDict('RelatedFullDocumentDiagnosticReport', { + # 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 + 'relatedDocuments': NotRequired[Dict['DocumentUri', Union['FullDocumentDiagnosticReport', 'UnchangedDocumentDiagnosticReport']]], + # A full document diagnostic report. + 'kind': Literal['full'], + # An optional result id. If provided it will + # be sent on the next diagnostic request for the + # same document. + 'resultId': NotRequired[str], + # The actual items. + 'items': List['Diagnostic'], +}) +""" A full diagnostic report with a set of related documents. + +@since 3.17.0 """ + + +RelatedUnchangedDocumentDiagnosticReport = TypedDict('RelatedUnchangedDocumentDiagnosticReport', { + # 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 + 'relatedDocuments': NotRequired[Dict['DocumentUri', Union['FullDocumentDiagnosticReport', 'UnchangedDocumentDiagnosticReport']]], + # A document diagnostic report indicating + # no changes to the last result. A server can + # only return `unchanged` if result ids are + # provided. + 'kind': Literal['unchanged'], + # A result id which will be sent on the next + # diagnostic request for the same document. + 'resultId': str, +}) +""" An unchanged diagnostic report with a set of related documents. + +@since 3.17.0 """ + + +FullDocumentDiagnosticReport = TypedDict('FullDocumentDiagnosticReport', { + # A full document diagnostic report. + 'kind': Literal['full'], + # An optional result id. If provided it will + # be sent on the next diagnostic request for the + # same document. + 'resultId': NotRequired[str], + # The actual items. + 'items': List['Diagnostic'], +}) +""" A diagnostic report with a full set of problems. + +@since 3.17.0 """ + + +UnchangedDocumentDiagnosticReport = TypedDict('UnchangedDocumentDiagnosticReport', { + # A document diagnostic report indicating + # no changes to the last result. A server can + # only return `unchanged` if result ids are + # provided. + 'kind': Literal['unchanged'], + # A result id which will be sent on the next + # diagnostic request for the same document. + 'resultId': str, +}) +""" A diagnostic report indicating that the last returned +report is still accurate. + +@since 3.17.0 """ + + +DiagnosticOptions = TypedDict('DiagnosticOptions', { + # An optional identifier under which the diagnostics are + # managed by the client. + 'identifier': NotRequired[str], + # 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. + 'interFileDependencies': bool, + # The server provides support for workspace diagnostics as well. + 'workspaceDiagnostics': bool, + 'workDoneProgress': NotRequired[bool], +}) +""" Diagnostic options. + +@since 3.17.0 """ + + +PreviousResultId = TypedDict('PreviousResultId', { + # The URI for which the client knowns a + # result id. + 'uri': 'DocumentUri', + # The value of the previous result id. + 'value': str, +}) +""" A previous result id in a workspace pull request. + +@since 3.17.0 """ + + +NotebookDocument = TypedDict('NotebookDocument', { + # The notebook document's uri. + 'uri': 'URI', + # The type of the notebook. + 'notebookType': str, + # The version number of this document (it will increase after each + # change, including undo/redo). + 'version': int, + # Additional metadata stored with the notebook + # document. + # + # Note: should always be an object literal (e.g. LSPObject) + 'metadata': NotRequired['LSPObject'], + # The cells of a notebook. + 'cells': List['NotebookCell'], +}) +""" A notebook document. + +@since 3.17.0 """ + + +TextDocumentItem = TypedDict('TextDocumentItem', { + # The text document's uri. + 'uri': 'DocumentUri', + # The text document's language identifier. + 'languageId': str, + # The version number of this document (it will increase after each + # change, including undo/redo). + 'version': int, + # The content of the opened text document. + 'text': str, +}) +""" An item to transfer a text document from the client to the +server. """ + + +VersionedNotebookDocumentIdentifier = TypedDict('VersionedNotebookDocumentIdentifier', { + # The version number of this notebook document. + 'version': int, + # The notebook document's uri. + 'uri': 'URI', +}) +""" A versioned notebook document identifier. + +@since 3.17.0 """ + + +NotebookDocumentChangeEvent = TypedDict('NotebookDocumentChangeEvent', { + # The changed meta data if any. + # + # Note: should always be an object literal (e.g. LSPObject) + 'metadata': NotRequired['LSPObject'], + # Changes to cells + 'cells': NotRequired['__Cells_Type_21'], +}) +""" A change event for a notebook document. + +@since 3.17.0 """ + + +NotebookDocumentIdentifier = TypedDict('NotebookDocumentIdentifier', { + # The notebook document's uri. + 'uri': 'URI', +}) +""" A literal to identify a notebook document in the client. + +@since 3.17.0 """ + + +Registration = TypedDict('Registration', { + # The id used to register the request. The id can be used to deregister + # the request again. + 'id': str, + # The method / capability to register for. + 'method': str, + # Options necessary for the registration. + 'registerOptions': NotRequired['LSPAny'], +}) +""" General parameters to to register for an notification or to register a provider. """ + + +Unregistration = TypedDict('Unregistration', { + # The id used to unregister the request or notification. Usually an id + # provided during the register request. + 'id': str, + # The method to unregister for. + 'method': str, +}) +""" General parameters to unregister a request or notification. """ + + +WorkspaceFoldersInitializeParams = TypedDict('WorkspaceFoldersInitializeParams', { + # 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 + 'workspaceFolders': NotRequired[Union[List['WorkspaceFolder'], None]], +}) + + +ServerCapabilities = TypedDict('ServerCapabilities', { + # 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 + 'positionEncoding': NotRequired['PositionEncodingKind'], + # Defines how text documents are synced. Is either a detailed structure + # defining each notification or for backwards compatibility the + # TextDocumentSyncKind number. + 'textDocumentSync': NotRequired[Union['TextDocumentSyncOptions', 'TextDocumentSyncKind']], + # Defines how notebook documents are synced. + # + # @since 3.17.0 + 'notebookDocumentSync': NotRequired[Union['NotebookDocumentSyncOptions', 'NotebookDocumentSyncRegistrationOptions']], + # The server provides completion support. + 'completionProvider': NotRequired['CompletionOptions'], + # The server provides hover support. + 'hoverProvider': NotRequired[Union[bool, 'HoverOptions']], + # The server provides signature help support. + 'signatureHelpProvider': NotRequired['SignatureHelpOptions'], + # The server provides Goto Declaration support. + 'declarationProvider': NotRequired[Union[bool, 'DeclarationOptions', 'DeclarationRegistrationOptions']], + # The server provides goto definition support. + 'definitionProvider': NotRequired[Union[bool, 'DefinitionOptions']], + # The server provides Goto Type Definition support. + 'typeDefinitionProvider': NotRequired[Union[bool, 'TypeDefinitionOptions', 'TypeDefinitionRegistrationOptions']], + # The server provides Goto Implementation support. + 'implementationProvider': NotRequired[Union[bool, 'ImplementationOptions', 'ImplementationRegistrationOptions']], + # The server provides find references support. + 'referencesProvider': NotRequired[Union[bool, 'ReferenceOptions']], + # The server provides document highlight support. + 'documentHighlightProvider': NotRequired[Union[bool, 'DocumentHighlightOptions']], + # The server provides document symbol support. + 'documentSymbolProvider': NotRequired[Union[bool, 'DocumentSymbolOptions']], + # The server provides code actions. CodeActionOptions may only be + # specified if the client states that it supports + # `codeActionLiteralSupport` in its initial `initialize` request. + 'codeActionProvider': NotRequired[Union[bool, 'CodeActionOptions']], + # The server provides code lens. + 'codeLensProvider': NotRequired['CodeLensOptions'], + # The server provides document link support. + 'documentLinkProvider': NotRequired['DocumentLinkOptions'], + # The server provides color provider support. + 'colorProvider': NotRequired[Union[bool, 'DocumentColorOptions', 'DocumentColorRegistrationOptions']], + # The server provides workspace symbol support. + 'workspaceSymbolProvider': NotRequired[Union[bool, 'WorkspaceSymbolOptions']], + # The server provides document formatting. + 'documentFormattingProvider': NotRequired[Union[bool, 'DocumentFormattingOptions']], + # The server provides document range formatting. + 'documentRangeFormattingProvider': NotRequired[Union[bool, 'DocumentRangeFormattingOptions']], + # The server provides document formatting on typing. + 'documentOnTypeFormattingProvider': NotRequired['DocumentOnTypeFormattingOptions'], + # The server provides rename support. RenameOptions may only be + # specified if the client states that it supports + # `prepareSupport` in its initial `initialize` request. + 'renameProvider': NotRequired[Union[bool, 'RenameOptions']], + # The server provides folding provider support. + 'foldingRangeProvider': NotRequired[Union[bool, 'FoldingRangeOptions', 'FoldingRangeRegistrationOptions']], + # The server provides selection range support. + 'selectionRangeProvider': NotRequired[Union[bool, 'SelectionRangeOptions', 'SelectionRangeRegistrationOptions']], + # The server provides execute command support. + 'executeCommandProvider': NotRequired['ExecuteCommandOptions'], + # The server provides call hierarchy support. + # + # @since 3.16.0 + 'callHierarchyProvider': NotRequired[Union[bool, 'CallHierarchyOptions', 'CallHierarchyRegistrationOptions']], + # The server provides linked editing range support. + # + # @since 3.16.0 + 'linkedEditingRangeProvider': NotRequired[Union[bool, 'LinkedEditingRangeOptions', 'LinkedEditingRangeRegistrationOptions']], + # The server provides semantic tokens support. + # + # @since 3.16.0 + 'semanticTokensProvider': NotRequired[Union['SemanticTokensOptions', 'SemanticTokensRegistrationOptions']], + # The server provides moniker support. + # + # @since 3.16.0 + 'monikerProvider': NotRequired[Union[bool, 'MonikerOptions', 'MonikerRegistrationOptions']], + # The server provides type hierarchy support. + # + # @since 3.17.0 + 'typeHierarchyProvider': NotRequired[Union[bool, 'TypeHierarchyOptions', 'TypeHierarchyRegistrationOptions']], + # The server provides inline values. + # + # @since 3.17.0 + 'inlineValueProvider': NotRequired[Union[bool, 'InlineValueOptions', 'InlineValueRegistrationOptions']], + # The server provides inlay hints. + # + # @since 3.17.0 + 'inlayHintProvider': NotRequired[Union[bool, 'InlayHintOptions', 'InlayHintRegistrationOptions']], + # The server has support for pull model diagnostics. + # + # @since 3.17.0 + 'diagnosticProvider': NotRequired[Union['DiagnosticOptions', 'DiagnosticRegistrationOptions']], + # Workspace specific server capabilities. + 'workspace': NotRequired['__Workspace_Type_24'], + # Experimental server capabilities. + 'experimental': NotRequired['LSPAny'], +}) +""" Defines the capabilities provided by a language +server. """ + + +VersionedTextDocumentIdentifier = TypedDict('VersionedTextDocumentIdentifier', { + # The version number of this document. + 'version': int, + # The text document's uri. + 'uri': 'DocumentUri', +}) +""" A text document identifier to denote a specific version of a text document. """ + + +SaveOptions = TypedDict('SaveOptions', { + # The client is supposed to include the content on save. + 'includeText': NotRequired[bool], +}) +""" Save options. """ + + +FileEvent = TypedDict('FileEvent', { + # The file's uri. + 'uri': 'DocumentUri', + # The change type. + 'type': 'FileChangeType', +}) +""" An event describing a file change. """ + + +FileSystemWatcher = TypedDict('FileSystemWatcher', { + # The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail. + # + # @since 3.17.0 support for relative patterns. + 'globPattern': 'GlobPattern', + # The kind of events of interest. If omitted it defaults + # to WatchKind.Create | WatchKind.Change | WatchKind.Delete + # which is 7. + 'kind': NotRequired['WatchKind'], +}) + + +Diagnostic = TypedDict('Diagnostic', { + # The range at which the message applies + 'range': 'Range', + # The diagnostic's severity. Can be omitted. If omitted it is up to the + # client to interpret diagnostics as error, warning, info or hint. + 'severity': NotRequired['DiagnosticSeverity'], + # The diagnostic's code, which usually appear in the user interface. + 'code': NotRequired[Union[int, str]], + # An optional property to describe the error code. + # Requires the code field (above) to be present/not null. + # + # @since 3.16.0 + 'codeDescription': NotRequired['CodeDescription'], + # A human-readable string describing the source of this + # diagnostic, e.g. 'typescript' or 'super lint'. It usually + # appears in the user interface. + 'source': NotRequired[str], + # The diagnostic's message. It usually appears in the user interface + 'message': str, + # Additional metadata about the diagnostic. + # + # @since 3.15.0 + 'tags': NotRequired[List['DiagnosticTag']], + # An array of related diagnostic information, e.g. when symbol-names within + # a scope collide all definitions can be marked via this property. + 'relatedInformation': NotRequired[List['DiagnosticRelatedInformation']], + # A data entry field that is preserved between a `textDocument/publishDiagnostics` + # notification and `textDocument/codeAction` request. + # + # @since 3.16.0 + 'data': NotRequired['LSPAny'], +}) +""" Represents a diagnostic, such as a compiler error or warning. Diagnostic objects +are only valid in the scope of a resource. """ + + +CompletionContext = TypedDict('CompletionContext', { + # How the completion was triggered. + 'triggerKind': 'CompletionTriggerKind', + # The trigger character (a single character) that has trigger code complete. + # Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter` + 'triggerCharacter': NotRequired[str], +}) +""" Contains additional information about the context in which a completion request is triggered. """ + + +CompletionItemLabelDetails = TypedDict('CompletionItemLabelDetails', { + # 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. + 'detail': NotRequired[str], + # An optional string which is rendered less prominently after {@link CompletionItem.detail}. Should be used + # for fully qualified names and file paths. + 'description': NotRequired[str], +}) +""" Additional details for a completion item label. + +@since 3.17.0 """ + + +InsertReplaceEdit = TypedDict('InsertReplaceEdit', { + # The string to be inserted. + 'newText': str, + # The range if the insert is requested + 'insert': 'Range', + # The range if the replace is requested. + 'replace': 'Range', +}) +""" A special text edit to provide an insert and a replace operation. + +@since 3.16.0 """ + + +CompletionOptions = TypedDict('CompletionOptions', { + # 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`. + 'triggerCharacters': NotRequired[List[str]], + # 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 + 'allCommitCharacters': NotRequired[List[str]], + # The server provides support to resolve additional + # information for a completion item. + 'resolveProvider': NotRequired[bool], + # The server supports the following `CompletionItem` specific + # capabilities. + # + # @since 3.17.0 + 'completionItem': NotRequired['__CompletionItem_Type_25'], + 'workDoneProgress': NotRequired[bool], +}) +""" Completion options. """ + + +HoverOptions = TypedDict('HoverOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Hover options. """ + + +SignatureHelpContext = TypedDict('SignatureHelpContext', { + # Action that caused signature help to be triggered. + 'triggerKind': 'SignatureHelpTriggerKind', + # Character that caused signature help to be triggered. + # + # This is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter` + 'triggerCharacter': NotRequired[str], + # `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. + 'isRetrigger': bool, + # The currently active `SignatureHelp`. + # + # The `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on + # the user navigating through available signatures. + 'activeSignatureHelp': NotRequired['SignatureHelp'], +}) +""" Additional information about the context in which a signature help request was triggered. + +@since 3.15.0 """ + + +SignatureInformation = TypedDict('SignatureInformation', { + # The label of this signature. Will be shown in + # the UI. + 'label': str, + # The human-readable doc-comment of this signature. Will be shown + # in the UI but can be omitted. + 'documentation': NotRequired[Union[str, 'MarkupContent']], + # The parameters of this signature. + 'parameters': NotRequired[List['ParameterInformation']], + # The index of the active parameter. + # + # If provided, this is used in place of `SignatureHelp.activeParameter`. + # + # @since 3.16.0 + 'activeParameter': NotRequired[Uint], +}) +""" Represents the signature of something callable. A signature +can have a label, like a function-name, a doc-comment, and +a set of parameters. """ + + +SignatureHelpOptions = TypedDict('SignatureHelpOptions', { + # List of characters that trigger signature help automatically. + 'triggerCharacters': NotRequired[List[str]], + # 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 + 'retriggerCharacters': NotRequired[List[str]], + 'workDoneProgress': NotRequired[bool], +}) +""" Server Capabilities for a [SignatureHelpRequest](#SignatureHelpRequest). """ + + +DefinitionOptions = TypedDict('DefinitionOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Server Capabilities for a [DefinitionRequest](#DefinitionRequest). """ + + +ReferenceContext = TypedDict('ReferenceContext', { + # Include the declaration of the current symbol. + 'includeDeclaration': bool, +}) +""" Value-object that contains additional information when +requesting references. """ + + +ReferenceOptions = TypedDict('ReferenceOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Reference options. """ + + +DocumentHighlightOptions = TypedDict('DocumentHighlightOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [DocumentHighlightRequest](#DocumentHighlightRequest). """ + + +BaseSymbolInformation = TypedDict('BaseSymbolInformation', { + # The name of this symbol. + 'name': str, + # The kind of this symbol. + 'kind': 'SymbolKind', + # Tags for this symbol. + # + # @since 3.16.0 + 'tags': NotRequired[List['SymbolTag']], + # 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. + 'containerName': NotRequired[str], +}) +""" A base for all symbol information. """ + + +DocumentSymbolOptions = TypedDict('DocumentSymbolOptions', { + # A human-readable string that is shown when multiple outlines trees + # are shown for the same document. + # + # @since 3.16.0 + 'label': NotRequired[str], + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [DocumentSymbolRequest](#DocumentSymbolRequest). """ + + +CodeActionContext = TypedDict('CodeActionContext', { + # 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. + 'diagnostics': List['Diagnostic'], + # 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. + 'only': NotRequired[List['CodeActionKind']], + # The reason why code actions were requested. + # + # @since 3.17.0 + 'triggerKind': NotRequired['CodeActionTriggerKind'], +}) +""" Contains additional diagnostic information about the context in which +a [code action](#CodeActionProvider.provideCodeActions) is run. """ + + +CodeActionOptions = TypedDict('CodeActionOptions', { + # 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. + 'codeActionKinds': NotRequired[List['CodeActionKind']], + # The server provides support to resolve additional + # information for a code action. + # + # @since 3.16.0 + 'resolveProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [CodeActionRequest](#CodeActionRequest). """ + + +WorkspaceSymbolOptions = TypedDict('WorkspaceSymbolOptions', { + # The server provides support to resolve additional + # information for a workspace symbol. + # + # @since 3.17.0 + 'resolveProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Server capabilities for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest). """ + + +CodeLensOptions = TypedDict('CodeLensOptions', { + # Code lens has a resolve provider as well. + 'resolveProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Code Lens provider options of a [CodeLensRequest](#CodeLensRequest). """ + + +DocumentLinkOptions = TypedDict('DocumentLinkOptions', { + # Document links have a resolve provider as well. + 'resolveProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [DocumentLinkRequest](#DocumentLinkRequest). """ + + +FormattingOptions = TypedDict('FormattingOptions', { + # Size of a tab in spaces. + 'tabSize': Uint, + # Prefer spaces over tabs. + 'insertSpaces': bool, + # Trim trailing whitespace on a line. + # + # @since 3.15.0 + 'trimTrailingWhitespace': NotRequired[bool], + # Insert a newline character at the end of the file if one does not exist. + # + # @since 3.15.0 + 'insertFinalNewline': NotRequired[bool], + # Trim all newlines after the final newline at the end of the file. + # + # @since 3.15.0 + 'trimFinalNewlines': NotRequired[bool], +}) +""" Value-object describing what options formatting should use. """ + + +DocumentFormattingOptions = TypedDict('DocumentFormattingOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [DocumentFormattingRequest](#DocumentFormattingRequest). """ + + +DocumentRangeFormattingOptions = TypedDict('DocumentRangeFormattingOptions', { + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest). """ + + +DocumentOnTypeFormattingOptions = TypedDict('DocumentOnTypeFormattingOptions', { + # A character on which formatting should be triggered, like `{`. + 'firstTriggerCharacter': str, + # More trigger characters. + 'moreTriggerCharacter': NotRequired[List[str]], +}) +""" Provider options for a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest). """ + + +RenameOptions = TypedDict('RenameOptions', { + # Renames should be checked and tested before being executed. + # + # @since version 3.12.0 + 'prepareProvider': NotRequired[bool], + 'workDoneProgress': NotRequired[bool], +}) +""" Provider options for a [RenameRequest](#RenameRequest). """ + + +ExecuteCommandOptions = TypedDict('ExecuteCommandOptions', { + # The commands to be executed on the server + 'commands': List[str], + 'workDoneProgress': NotRequired[bool], +}) +""" The server capabilities of a [ExecuteCommandRequest](#ExecuteCommandRequest). """ + + +SemanticTokensLegend = TypedDict('SemanticTokensLegend', { + # The token types a server uses. + 'tokenTypes': List[str], + # The token modifiers a server uses. + 'tokenModifiers': List[str], +}) +""" @since 3.16.0 """ + + +OptionalVersionedTextDocumentIdentifier = TypedDict('OptionalVersionedTextDocumentIdentifier', { + # 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). + 'version': Union[int, None], + # The text document's uri. + 'uri': 'DocumentUri', +}) +""" A text document identifier to optionally denote a specific version of a text document. """ + + +AnnotatedTextEdit = TypedDict('AnnotatedTextEdit', { + # The actual identifier of the change annotation + 'annotationId': 'ChangeAnnotationIdentifier', + # The range of the text document to be manipulated. To insert + # text into a document create a range where start === end. + 'range': 'Range', + # The string to be inserted. For delete operations use an + # empty string. + 'newText': str, +}) +""" A special text edit with an additional change annotation. + +@since 3.16.0. """ + + +ResourceOperation = TypedDict('ResourceOperation', { + # The resource operation kind. + 'kind': str, + # An optional annotation identifier describing the operation. + # + # @since 3.16.0 + 'annotationId': NotRequired['ChangeAnnotationIdentifier'], +}) +""" A generic resource operation. """ + + +CreateFileOptions = TypedDict('CreateFileOptions', { + # Overwrite existing file. Overwrite wins over `ignoreIfExists` + 'overwrite': NotRequired[bool], + # Ignore if exists. + 'ignoreIfExists': NotRequired[bool], +}) +""" Options to create a file. """ + + +RenameFileOptions = TypedDict('RenameFileOptions', { + # Overwrite target if existing. Overwrite wins over `ignoreIfExists` + 'overwrite': NotRequired[bool], + # Ignores if target exists. + 'ignoreIfExists': NotRequired[bool], +}) +""" Rename file options """ + + +DeleteFileOptions = TypedDict('DeleteFileOptions', { + # Delete the content recursively if a folder is denoted. + 'recursive': NotRequired[bool], + # Ignore the operation if the file doesn't exist. + 'ignoreIfNotExists': NotRequired[bool], +}) +""" Delete file options """ + + +FileOperationPattern = TypedDict('FileOperationPattern', { + # 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`) + 'glob': str, + # Whether to match files or folders with this pattern. + # + # Matches both if undefined. + 'matches': NotRequired['FileOperationPatternKind'], + # Additional options used during matching. + 'options': NotRequired['FileOperationPatternOptions'], +}) +""" A pattern to describe in which file operation requests or notifications +the server is interested in receiving. + +@since 3.16.0 """ + + +WorkspaceFullDocumentDiagnosticReport = TypedDict('WorkspaceFullDocumentDiagnosticReport', { + # The URI for which diagnostic information is reported. + 'uri': 'DocumentUri', + # The version number for which the diagnostics are reported. + # If the document is not marked as open `null` can be provided. + 'version': Union[int, None], + # A full document diagnostic report. + 'kind': Literal['full'], + # An optional result id. If provided it will + # be sent on the next diagnostic request for the + # same document. + 'resultId': NotRequired[str], + # The actual items. + 'items': List['Diagnostic'], +}) +""" A full document diagnostic report for a workspace diagnostic result. + +@since 3.17.0 """ + + +WorkspaceUnchangedDocumentDiagnosticReport = TypedDict('WorkspaceUnchangedDocumentDiagnosticReport', { + # The URI for which diagnostic information is reported. + 'uri': 'DocumentUri', + # The version number for which the diagnostics are reported. + # If the document is not marked as open `null` can be provided. + 'version': Union[int, None], + # A document diagnostic report indicating + # no changes to the last result. A server can + # only return `unchanged` if result ids are + # provided. + 'kind': Literal['unchanged'], + # A result id which will be sent on the next + # diagnostic request for the same document. + 'resultId': str, +}) +""" An unchanged document diagnostic report for a workspace diagnostic result. + +@since 3.17.0 """ + + +LSPObject = TypedDict('LSPObject', { + +}) +""" LSP object definition. +@since 3.17.0 """ + + +NotebookCell = TypedDict('NotebookCell', { + # The cell's kind + 'kind': 'NotebookCellKind', + # The URI of the cell's text document + # content. + 'document': 'DocumentUri', + # Additional metadata stored with the cell. + # + # Note: should always be an object literal (e.g. LSPObject) + 'metadata': NotRequired['LSPObject'], + # Additional execution summary information + # if supported by the client. + 'executionSummary': NotRequired['ExecutionSummary'], +}) +""" A notebook cell. + +A cell's document URI must be unique across ALL notebook +cells and can therefore be used to uniquely identify a +notebook cell or the cell's text document. + +@since 3.17.0 """ + + +NotebookCellArrayChange = TypedDict('NotebookCellArrayChange', { + # The start oftest of the cell that changed. + 'start': Uint, + # The deleted cells + 'deleteCount': Uint, + # The new cells, if any + 'cells': NotRequired[List['NotebookCell']], +}) +""" A change describing how to move a `NotebookCell` +array from state S to S'. + +@since 3.17.0 """ + + +ClientCapabilities = TypedDict('ClientCapabilities', { + # Workspace specific client capabilities. + 'workspace': NotRequired['WorkspaceClientCapabilities'], + # Text document specific client capabilities. + 'textDocument': NotRequired['TextDocumentClientCapabilities'], + # Capabilities specific to the notebook document support. + # + # @since 3.17.0 + 'notebookDocument': NotRequired['NotebookDocumentClientCapabilities'], + # Window specific client capabilities. + 'window': NotRequired['WindowClientCapabilities'], + # General client capabilities. + # + # @since 3.16.0 + 'general': NotRequired['GeneralClientCapabilities'], + # Experimental client capabilities. + 'experimental': NotRequired['LSPAny'], +}) +""" Defines the capabilities provided by the client. """ + + +TextDocumentSyncOptions = TypedDict('TextDocumentSyncOptions', { + # Open and close notifications are sent to the server. If omitted open close notification should not + # be sent. + 'openClose': NotRequired[bool], + # Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full + # and TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None. + 'change': NotRequired['TextDocumentSyncKind'], + # If present will save notifications are sent to the server. If omitted the notification should not be + # sent. + 'willSave': NotRequired[bool], + # If present will save wait until requests are sent to the server. If omitted the request should not be + # sent. + 'willSaveWaitUntil': NotRequired[bool], + # If present save notifications are sent to the server. If omitted the notification should not be + # sent. + 'save': NotRequired[Union[bool, 'SaveOptions']], +}) + + +NotebookDocumentSyncOptions = TypedDict('NotebookDocumentSyncOptions', { + # The notebooks to be synced + 'notebookSelector': List[Union['__NotebookSelector_Type_26', '__NotebookSelector_Type_28']], + # Whether save notification should be forwarded to + # the server. Will only be honored if mode === `notebook`. + 'save': NotRequired[bool], +}) +""" Options specific to a notebook plus its cells +to be synced to the server. + +If a selector provides a notebook document +filter but no cell selector all cells of a +matching notebook document will be synced. + +If a selector provides no notebook document +filter but only a cell selector all notebook +document that contain at least one matching +cell will be synced. + +@since 3.17.0 """ + + +NotebookDocumentSyncRegistrationOptions = TypedDict('NotebookDocumentSyncRegistrationOptions', { + # The notebooks to be synced + 'notebookSelector': List[Union['__NotebookSelector_Type_30', '__NotebookSelector_Type_32']], + # Whether save notification should be forwarded to + # the server. Will only be honored if mode === `notebook`. + 'save': NotRequired[bool], + # The id used to register the request. The id can be used to deregister + # the request again. See also Registration#id. + 'id': NotRequired[str], +}) +""" Registration options specific to a notebook. + +@since 3.17.0 """ + + +WorkspaceFoldersServerCapabilities = TypedDict('WorkspaceFoldersServerCapabilities', { + # The server has support for workspace folders + 'supported': NotRequired[bool], + # 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. + 'changeNotifications': NotRequired[Union[str, bool]], +}) + + +FileOperationOptions = TypedDict('FileOperationOptions', { + # The server is interested in receiving didCreateFiles notifications. + 'didCreate': NotRequired['FileOperationRegistrationOptions'], + # The server is interested in receiving willCreateFiles requests. + 'willCreate': NotRequired['FileOperationRegistrationOptions'], + # The server is interested in receiving didRenameFiles notifications. + 'didRename': NotRequired['FileOperationRegistrationOptions'], + # The server is interested in receiving willRenameFiles requests. + 'willRename': NotRequired['FileOperationRegistrationOptions'], + # The server is interested in receiving didDeleteFiles file notifications. + 'didDelete': NotRequired['FileOperationRegistrationOptions'], + # The server is interested in receiving willDeleteFiles file requests. + 'willDelete': NotRequired['FileOperationRegistrationOptions'], +}) +""" Options for notifications/requests for user operations on files. + +@since 3.16.0 """ + + +CodeDescription = TypedDict('CodeDescription', { + # An URI to open with more information about the diagnostic error. + 'href': 'URI', +}) +""" Structure to capture a description for an error code. + +@since 3.16.0 """ + + +DiagnosticRelatedInformation = TypedDict('DiagnosticRelatedInformation', { + # The location of this related diagnostic information. + 'location': 'Location', + # The message of this related diagnostic information. + 'message': str, +}) +""" Represents a related message and source code location for a diagnostic. This should be +used to point to code locations that cause or related to a diagnostics, e.g when duplicating +a symbol in a scope. """ + + +ParameterInformation = TypedDict('ParameterInformation', { + # 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`. + 'label': Union[str, List[Union[Uint, Uint]]], + # The human-readable doc-comment of this parameter. Will be shown + # in the UI but can be omitted. + 'documentation': NotRequired[Union[str, 'MarkupContent']], +}) +""" Represents a parameter of a callable-signature. A parameter can +have a label and a doc-comment. """ + + +NotebookCellTextDocumentFilter = TypedDict('NotebookCellTextDocumentFilter', { + # 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. + 'notebook': Union[str, 'NotebookDocumentFilter'], + # A language id like `python`. + # + # Will be matched against the language id of the + # notebook cell document. '*' matches every language. + 'language': NotRequired[str], +}) +""" A notebook cell text document filter denotes a cell text +document by different properties. + +@since 3.17.0 """ + + +FileOperationPatternOptions = TypedDict('FileOperationPatternOptions', { + # The pattern should be matched ignoring casing. + 'ignoreCase': NotRequired[bool], +}) +""" Matching options for the file operation pattern. + +@since 3.16.0 """ + + +ExecutionSummary = TypedDict('ExecutionSummary', { + # A strict monotonically increasing value + # indicating the execution order of a cell + # inside a notebook. + 'executionOrder': Uint, + # Whether the execution was successful or + # not if known by the client. + 'success': NotRequired[bool], +}) + + +WorkspaceClientCapabilities = TypedDict('WorkspaceClientCapabilities', { + # The client supports applying batch edits + # to the workspace by supporting the request + # 'workspace/applyEdit' + 'applyEdit': NotRequired[bool], + # Capabilities specific to `WorkspaceEdit`s. + 'workspaceEdit': NotRequired['WorkspaceEditClientCapabilities'], + # Capabilities specific to the `workspace/didChangeConfiguration` notification. + 'didChangeConfiguration': NotRequired['DidChangeConfigurationClientCapabilities'], + # Capabilities specific to the `workspace/didChangeWatchedFiles` notification. + 'didChangeWatchedFiles': NotRequired['DidChangeWatchedFilesClientCapabilities'], + # Capabilities specific to the `workspace/symbol` request. + 'symbol': NotRequired['WorkspaceSymbolClientCapabilities'], + # Capabilities specific to the `workspace/executeCommand` request. + 'executeCommand': NotRequired['ExecuteCommandClientCapabilities'], + # The client has support for workspace folders. + # + # @since 3.6.0 + 'workspaceFolders': NotRequired[bool], + # The client supports `workspace/configuration` requests. + # + # @since 3.6.0 + 'configuration': NotRequired[bool], + # Capabilities specific to the semantic token requests scoped to the + # workspace. + # + # @since 3.16.0. + 'semanticTokens': NotRequired['SemanticTokensWorkspaceClientCapabilities'], + # Capabilities specific to the code lens requests scoped to the + # workspace. + # + # @since 3.16.0. + 'codeLens': NotRequired['CodeLensWorkspaceClientCapabilities'], + # The client has support for file notifications/requests for user operations on files. + # + # Since 3.16.0 + 'fileOperations': NotRequired['FileOperationClientCapabilities'], + # Capabilities specific to the inline values requests scoped to the + # workspace. + # + # @since 3.17.0. + 'inlineValue': NotRequired['InlineValueWorkspaceClientCapabilities'], + # Capabilities specific to the inlay hint requests scoped to the + # workspace. + # + # @since 3.17.0. + 'inlayHint': NotRequired['InlayHintWorkspaceClientCapabilities'], + # Capabilities specific to the diagnostic requests scoped to the + # workspace. + # + # @since 3.17.0. + 'diagnostics': NotRequired['DiagnosticWorkspaceClientCapabilities'], +}) +""" Workspace specific client capabilities. """ + + +TextDocumentClientCapabilities = TypedDict('TextDocumentClientCapabilities', { + # Defines which synchronization capabilities the client supports. + 'synchronization': NotRequired['TextDocumentSyncClientCapabilities'], + # Capabilities specific to the `textDocument/completion` request. + 'completion': NotRequired['CompletionClientCapabilities'], + # Capabilities specific to the `textDocument/hover` request. + 'hover': NotRequired['HoverClientCapabilities'], + # Capabilities specific to the `textDocument/signatureHelp` request. + 'signatureHelp': NotRequired['SignatureHelpClientCapabilities'], + # Capabilities specific to the `textDocument/declaration` request. + # + # @since 3.14.0 + 'declaration': NotRequired['DeclarationClientCapabilities'], + # Capabilities specific to the `textDocument/definition` request. + 'definition': NotRequired['DefinitionClientCapabilities'], + # Capabilities specific to the `textDocument/typeDefinition` request. + # + # @since 3.6.0 + 'typeDefinition': NotRequired['TypeDefinitionClientCapabilities'], + # Capabilities specific to the `textDocument/implementation` request. + # + # @since 3.6.0 + 'implementation': NotRequired['ImplementationClientCapabilities'], + # Capabilities specific to the `textDocument/references` request. + 'references': NotRequired['ReferenceClientCapabilities'], + # Capabilities specific to the `textDocument/documentHighlight` request. + 'documentHighlight': NotRequired['DocumentHighlightClientCapabilities'], + # Capabilities specific to the `textDocument/documentSymbol` request. + 'documentSymbol': NotRequired['DocumentSymbolClientCapabilities'], + # Capabilities specific to the `textDocument/codeAction` request. + 'codeAction': NotRequired['CodeActionClientCapabilities'], + # Capabilities specific to the `textDocument/codeLens` request. + 'codeLens': NotRequired['CodeLensClientCapabilities'], + # Capabilities specific to the `textDocument/documentLink` request. + 'documentLink': NotRequired['DocumentLinkClientCapabilities'], + # Capabilities specific to the `textDocument/documentColor` and the + # `textDocument/colorPresentation` request. + # + # @since 3.6.0 + 'colorProvider': NotRequired['DocumentColorClientCapabilities'], + # Capabilities specific to the `textDocument/formatting` request. + 'formatting': NotRequired['DocumentFormattingClientCapabilities'], + # Capabilities specific to the `textDocument/rangeFormatting` request. + 'rangeFormatting': NotRequired['DocumentRangeFormattingClientCapabilities'], + # Capabilities specific to the `textDocument/onTypeFormatting` request. + 'onTypeFormatting': NotRequired['DocumentOnTypeFormattingClientCapabilities'], + # Capabilities specific to the `textDocument/rename` request. + 'rename': NotRequired['RenameClientCapabilities'], + # Capabilities specific to the `textDocument/foldingRange` request. + # + # @since 3.10.0 + 'foldingRange': NotRequired['FoldingRangeClientCapabilities'], + # Capabilities specific to the `textDocument/selectionRange` request. + # + # @since 3.15.0 + 'selectionRange': NotRequired['SelectionRangeClientCapabilities'], + # Capabilities specific to the `textDocument/publishDiagnostics` notification. + 'publishDiagnostics': NotRequired['PublishDiagnosticsClientCapabilities'], + # Capabilities specific to the various call hierarchy requests. + # + # @since 3.16.0 + 'callHierarchy': NotRequired['CallHierarchyClientCapabilities'], + # Capabilities specific to the various semantic token request. + # + # @since 3.16.0 + 'semanticTokens': NotRequired['SemanticTokensClientCapabilities'], + # Capabilities specific to the `textDocument/linkedEditingRange` request. + # + # @since 3.16.0 + 'linkedEditingRange': NotRequired['LinkedEditingRangeClientCapabilities'], + # Client capabilities specific to the `textDocument/moniker` request. + # + # @since 3.16.0 + 'moniker': NotRequired['MonikerClientCapabilities'], + # Capabilities specific to the various type hierarchy requests. + # + # @since 3.17.0 + 'typeHierarchy': NotRequired['TypeHierarchyClientCapabilities'], + # Capabilities specific to the `textDocument/inlineValue` request. + # + # @since 3.17.0 + 'inlineValue': NotRequired['InlineValueClientCapabilities'], + # Capabilities specific to the `textDocument/inlayHint` request. + # + # @since 3.17.0 + 'inlayHint': NotRequired['InlayHintClientCapabilities'], + # Capabilities specific to the diagnostic pull model. + # + # @since 3.17.0 + 'diagnostic': NotRequired['DiagnosticClientCapabilities'], +}) +""" Text document specific client capabilities. """ + + +NotebookDocumentClientCapabilities = TypedDict('NotebookDocumentClientCapabilities', { + # Capabilities specific to notebook document synchronization + # + # @since 3.17.0 + 'synchronization': 'NotebookDocumentSyncClientCapabilities', +}) +""" Capabilities specific to the notebook document support. + +@since 3.17.0 """ + + +WindowClientCapabilities = TypedDict('WindowClientCapabilities', { + # 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 + 'workDoneProgress': NotRequired[bool], + # Capabilities specific to the showMessage request. + # + # @since 3.16.0 + 'showMessage': NotRequired['ShowMessageRequestClientCapabilities'], + # Capabilities specific to the showDocument request. + # + # @since 3.16.0 + 'showDocument': NotRequired['ShowDocumentClientCapabilities'], +}) + + +GeneralClientCapabilities = TypedDict('GeneralClientCapabilities', { + # 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 + 'staleRequestSupport': NotRequired['__StaleRequestSupport_Type_34'], + # Client capabilities specific to regular expressions. + # + # @since 3.16.0 + 'regularExpressions': NotRequired['RegularExpressionsClientCapabilities'], + # Client capabilities specific to the client's markdown parser. + # + # @since 3.16.0 + 'markdown': NotRequired['MarkdownClientCapabilities'], + # 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 + 'positionEncodings': NotRequired[List['PositionEncodingKind']], +}) +""" General client capabilities. + +@since 3.16.0 """ + + +RelativePattern = TypedDict('RelativePattern', { + # A workspace folder or a base URI to which this pattern will be matched + # against relatively. + 'baseUri': Union['WorkspaceFolder', 'URI'], + # The actual glob pattern; + 'pattern': 'Pattern', +}) +""" A relative pattern is a helper to construct glob patterns that are matched +relatively to a base URI. The common value for a `baseUri` is a workspace +folder root, but it can be another absolute URI as well. + +@since 3.17.0 """ + + +WorkspaceEditClientCapabilities = TypedDict('WorkspaceEditClientCapabilities', { + # The client supports versioned document changes in `WorkspaceEdit`s + 'documentChanges': NotRequired[bool], + # The resource operations the client supports. Clients should at least + # support 'create', 'rename' and 'delete' files and folders. + # + # @since 3.13.0 + 'resourceOperations': NotRequired[List['ResourceOperationKind']], + # The failure handling strategy of a client if applying the workspace edit + # fails. + # + # @since 3.13.0 + 'failureHandling': NotRequired['FailureHandlingKind'], + # 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 + 'normalizesLineEndings': NotRequired[bool], + # Whether the client in general supports change annotations on text edits, + # create file, rename file and delete file changes. + # + # @since 3.16.0 + 'changeAnnotationSupport': NotRequired['__ChangeAnnotationSupport_Type_35'], +}) + + +DidChangeConfigurationClientCapabilities = TypedDict('DidChangeConfigurationClientCapabilities', { + # Did change configuration notification supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) + + +DidChangeWatchedFilesClientCapabilities = TypedDict('DidChangeWatchedFilesClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # Whether the client has support for {@link RelativePattern relative pattern} + # or not. + # + # @since 3.17.0 + 'relativePatternSupport': NotRequired[bool], +}) + + +WorkspaceSymbolClientCapabilities = TypedDict('WorkspaceSymbolClientCapabilities', { + # Symbol request supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Specific capabilities for the `SymbolKind` in the `workspace/symbol` request. + 'symbolKind': NotRequired['__SymbolKind_Type_36'], + # The client supports tags on `SymbolInformation`. + # Clients supporting tags have to handle unknown tags gracefully. + # + # @since 3.16.0 + 'tagSupport': NotRequired['__TagSupport_Type_37'], + # 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 + 'resolveSupport': NotRequired['__ResolveSupport_Type_38'], +}) +""" Client capabilities for a [WorkspaceSymbolRequest](#WorkspaceSymbolRequest). """ + + +ExecuteCommandClientCapabilities = TypedDict('ExecuteCommandClientCapabilities', { + # Execute command supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" The client capabilities of a [ExecuteCommandRequest](#ExecuteCommandRequest). """ + + +SemanticTokensWorkspaceClientCapabilities = TypedDict('SemanticTokensWorkspaceClientCapabilities', { + # 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. + 'refreshSupport': NotRequired[bool], +}) +""" @since 3.16.0 """ + + +CodeLensWorkspaceClientCapabilities = TypedDict('CodeLensWorkspaceClientCapabilities', { + # 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. + 'refreshSupport': NotRequired[bool], +}) +""" @since 3.16.0 """ + + +FileOperationClientCapabilities = TypedDict('FileOperationClientCapabilities', { + # Whether the client supports dynamic registration for file requests/notifications. + 'dynamicRegistration': NotRequired[bool], + # The client has support for sending didCreateFiles notifications. + 'didCreate': NotRequired[bool], + # The client has support for sending willCreateFiles requests. + 'willCreate': NotRequired[bool], + # The client has support for sending didRenameFiles notifications. + 'didRename': NotRequired[bool], + # The client has support for sending willRenameFiles requests. + 'willRename': NotRequired[bool], + # The client has support for sending didDeleteFiles notifications. + 'didDelete': NotRequired[bool], + # The client has support for sending willDeleteFiles requests. + 'willDelete': NotRequired[bool], +}) +""" Capabilities relating to events from file operations by the user in the client. + +These events do not come from the file system, they come from user operations +like renaming a file in the UI. + +@since 3.16.0 """ + + +InlineValueWorkspaceClientCapabilities = TypedDict('InlineValueWorkspaceClientCapabilities', { + # 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. + 'refreshSupport': NotRequired[bool], +}) +""" Client workspace capabilities specific to inline values. + +@since 3.17.0 """ + + +InlayHintWorkspaceClientCapabilities = TypedDict('InlayHintWorkspaceClientCapabilities', { + # 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. + 'refreshSupport': NotRequired[bool], +}) +""" Client workspace capabilities specific to inlay hints. + +@since 3.17.0 """ + + +DiagnosticWorkspaceClientCapabilities = TypedDict('DiagnosticWorkspaceClientCapabilities', { + # 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. + 'refreshSupport': NotRequired[bool], +}) +""" Workspace client capabilities specific to diagnostic pull requests. + +@since 3.17.0 """ + + +TextDocumentSyncClientCapabilities = TypedDict('TextDocumentSyncClientCapabilities', { + # Whether text document synchronization supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # The client supports sending will save notifications. + 'willSave': NotRequired[bool], + # 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. + 'willSaveWaitUntil': NotRequired[bool], + # The client supports did save notifications. + 'didSave': NotRequired[bool], +}) + + +CompletionClientCapabilities = TypedDict('CompletionClientCapabilities', { + # Whether completion supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # The client supports the following `CompletionItem` specific + # capabilities. + 'completionItem': NotRequired['__CompletionItem_Type_39'], + 'completionItemKind': NotRequired['__CompletionItemKind_Type_43'], + # 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 + 'insertTextMode': NotRequired['InsertTextMode'], + # The client supports to send additional context information for a + # `textDocument/completion` request. + 'contextSupport': NotRequired[bool], + # The client supports the following `CompletionList` specific + # capabilities. + # + # @since 3.17.0 + 'completionList': NotRequired['__CompletionList_Type_44'], +}) +""" Completion client capabilities """ + + +HoverClientCapabilities = TypedDict('HoverClientCapabilities', { + # Whether hover supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Client supports the following content formats for the content + # property. The order describes the preferred format of the client. + 'contentFormat': NotRequired[List['MarkupKind']], +}) + + +SignatureHelpClientCapabilities = TypedDict('SignatureHelpClientCapabilities', { + # Whether signature help supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # The client supports the following `SignatureInformation` + # specific properties. + 'signatureInformation': NotRequired['__SignatureInformation_Type_45'], + # 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 + 'contextSupport': NotRequired[bool], +}) +""" Client Capabilities for a [SignatureHelpRequest](#SignatureHelpRequest). """ + + +DeclarationClientCapabilities = TypedDict('DeclarationClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # The client supports additional metadata in the form of declaration links. + 'linkSupport': NotRequired[bool], +}) +""" @since 3.14.0 """ + + +DefinitionClientCapabilities = TypedDict('DefinitionClientCapabilities', { + # Whether definition supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # The client supports additional metadata in the form of definition links. + # + # @since 3.14.0 + 'linkSupport': NotRequired[bool], +}) +""" Client Capabilities for a [DefinitionRequest](#DefinitionRequest). """ + + +TypeDefinitionClientCapabilities = TypedDict('TypeDefinitionClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # The client supports additional metadata in the form of definition links. + # + # Since 3.14.0 + 'linkSupport': NotRequired[bool], +}) +""" Since 3.6.0 """ + + +ImplementationClientCapabilities = TypedDict('ImplementationClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # The client supports additional metadata in the form of definition links. + # + # @since 3.14.0 + 'linkSupport': NotRequired[bool], +}) +""" @since 3.6.0 """ + + +ReferenceClientCapabilities = TypedDict('ReferenceClientCapabilities', { + # Whether references supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client Capabilities for a [ReferencesRequest](#ReferencesRequest). """ + + +DocumentHighlightClientCapabilities = TypedDict('DocumentHighlightClientCapabilities', { + # Whether document highlight supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client Capabilities for a [DocumentHighlightRequest](#DocumentHighlightRequest). """ + + +DocumentSymbolClientCapabilities = TypedDict('DocumentSymbolClientCapabilities', { + # Whether document symbol supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Specific capabilities for the `SymbolKind` in the + # `textDocument/documentSymbol` request. + 'symbolKind': NotRequired['__SymbolKind_Type_47'], + # The client supports hierarchical document symbols. + 'hierarchicalDocumentSymbolSupport': NotRequired[bool], + # 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 + 'tagSupport': NotRequired['__TagSupport_Type_48'], + # The client supports an additional label presented in the UI when + # registering a document symbol provider. + # + # @since 3.16.0 + 'labelSupport': NotRequired[bool], +}) +""" Client Capabilities for a [DocumentSymbolRequest](#DocumentSymbolRequest). """ + + +CodeActionClientCapabilities = TypedDict('CodeActionClientCapabilities', { + # Whether code action supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # 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 + 'codeActionLiteralSupport': NotRequired['__CodeActionLiteralSupport_Type_49'], + # Whether code action supports the `isPreferred` property. + # + # @since 3.15.0 + 'isPreferredSupport': NotRequired[bool], + # Whether code action supports the `disabled` property. + # + # @since 3.16.0 + 'disabledSupport': NotRequired[bool], + # Whether code action supports the `data` property which is + # preserved between a `textDocument/codeAction` and a + # `codeAction/resolve` request. + # + # @since 3.16.0 + 'dataSupport': NotRequired[bool], + # Whether the client supports resolving additional code action + # properties via a separate `codeAction/resolve` request. + # + # @since 3.16.0 + 'resolveSupport': NotRequired['__ResolveSupport_Type_51'], + # 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 + 'honorsChangeAnnotations': NotRequired[bool], +}) +""" The Client Capabilities of a [CodeActionRequest](#CodeActionRequest). """ + + +CodeLensClientCapabilities = TypedDict('CodeLensClientCapabilities', { + # Whether code lens supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" The client capabilities of a [CodeLensRequest](#CodeLensRequest). """ + + +DocumentLinkClientCapabilities = TypedDict('DocumentLinkClientCapabilities', { + # Whether document link supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Whether the client supports the `tooltip` property on `DocumentLink`. + # + # @since 3.15.0 + 'tooltipSupport': NotRequired[bool], +}) +""" The client capabilities of a [DocumentLinkRequest](#DocumentLinkRequest). """ + + +DocumentColorClientCapabilities = TypedDict('DocumentColorClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) + + +DocumentFormattingClientCapabilities = TypedDict('DocumentFormattingClientCapabilities', { + # Whether formatting supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities of a [DocumentFormattingRequest](#DocumentFormattingRequest). """ + + +DocumentRangeFormattingClientCapabilities = TypedDict('DocumentRangeFormattingClientCapabilities', { + # Whether range formatting supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities of a [DocumentRangeFormattingRequest](#DocumentRangeFormattingRequest). """ + + +DocumentOnTypeFormattingClientCapabilities = TypedDict('DocumentOnTypeFormattingClientCapabilities', { + # Whether on type formatting supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities of a [DocumentOnTypeFormattingRequest](#DocumentOnTypeFormattingRequest). """ + + +RenameClientCapabilities = TypedDict('RenameClientCapabilities', { + # Whether rename supports dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Client supports testing for validity of rename operations + # before execution. + # + # @since 3.12.0 + 'prepareSupport': NotRequired[bool], + # Client supports the default behavior result. + # + # The value indicates the default behavior used by the + # client. + # + # @since 3.16.0 + 'prepareSupportDefaultBehavior': NotRequired['PrepareSupportDefaultBehavior'], + # 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 + 'honorsChangeAnnotations': NotRequired[bool], +}) + + +FoldingRangeClientCapabilities = TypedDict('FoldingRangeClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # 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. + 'rangeLimit': NotRequired[Uint], + # 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. + 'lineFoldingOnly': NotRequired[bool], + # Specific options for the folding range kind. + # + # @since 3.17.0 + 'foldingRangeKind': NotRequired['__FoldingRangeKind_Type_52'], + # Specific options for the folding range. + # + # @since 3.17.0 + 'foldingRange': NotRequired['__FoldingRange_Type_53'], +}) + + +SelectionRangeClientCapabilities = TypedDict('SelectionRangeClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) + + +PublishDiagnosticsClientCapabilities = TypedDict('PublishDiagnosticsClientCapabilities', { + # Whether the clients accepts diagnostics with related information. + 'relatedInformation': NotRequired[bool], + # 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 + 'tagSupport': NotRequired['__TagSupport_Type_54'], + # Whether the client interprets the version property of the + # `textDocument/publishDiagnostics` notification's parameter. + # + # @since 3.15.0 + 'versionSupport': NotRequired[bool], + # Client supports a codeDescription property + # + # @since 3.16.0 + 'codeDescriptionSupport': NotRequired[bool], + # Whether code action supports the `data` property which is + # preserved between a `textDocument/publishDiagnostics` and + # `textDocument/codeAction` request. + # + # @since 3.16.0 + 'dataSupport': NotRequired[bool], +}) +""" The publish diagnostic client capabilities. """ + + +CallHierarchyClientCapabilities = TypedDict('CallHierarchyClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) +""" @since 3.16.0 """ + + +SemanticTokensClientCapabilities = TypedDict('SemanticTokensClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # 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. + 'requests': '__Requests_Type_55', + # The token types that the client supports. + 'tokenTypes': List[str], + # The token modifiers that the client supports. + 'tokenModifiers': List[str], + # The token formats the clients supports. + 'formats': List['TokenFormat'], + # Whether the client supports tokens that can overlap each other. + 'overlappingTokenSupport': NotRequired[bool], + # Whether the client supports tokens that can span multiple lines. + 'multilineTokenSupport': NotRequired[bool], + # 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 + 'serverCancelSupport': NotRequired[bool], + # 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 + 'augmentsSyntaxTokens': NotRequired[bool], +}) +""" @since 3.16.0 """ + + +LinkedEditingRangeClientCapabilities = TypedDict('LinkedEditingRangeClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities for the linked editing range request. + +@since 3.16.0 """ + + +MonikerClientCapabilities = TypedDict('MonikerClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities specific to the moniker request. + +@since 3.16.0 """ + + +TypeHierarchyClientCapabilities = TypedDict('TypeHierarchyClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], +}) +""" @since 3.17.0 """ + + +InlineValueClientCapabilities = TypedDict('InlineValueClientCapabilities', { + # Whether implementation supports dynamic registration for inline value providers. + 'dynamicRegistration': NotRequired[bool], +}) +""" Client capabilities specific to inline values. + +@since 3.17.0 """ + + +InlayHintClientCapabilities = TypedDict('InlayHintClientCapabilities', { + # Whether inlay hints support dynamic registration. + 'dynamicRegistration': NotRequired[bool], + # Indicates which properties a client can resolve lazily on an inlay + # hint. + 'resolveSupport': NotRequired['__ResolveSupport_Type_57'], +}) +""" Inlay hint client capabilities. + +@since 3.17.0 """ + + +DiagnosticClientCapabilities = TypedDict('DiagnosticClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # Whether the clients supports related documents for document diagnostic pulls. + 'relatedDocumentSupport': NotRequired[bool], +}) +""" Client capabilities specific to diagnostic pull requests. + +@since 3.17.0 """ + + +NotebookDocumentSyncClientCapabilities = TypedDict('NotebookDocumentSyncClientCapabilities', { + # 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. + 'dynamicRegistration': NotRequired[bool], + # The client supports sending execution summary data per cell. + 'executionSummarySupport': NotRequired[bool], +}) +""" Notebook specific client capabilities. + +@since 3.17.0 """ + + +ShowMessageRequestClientCapabilities = TypedDict('ShowMessageRequestClientCapabilities', { + # Capabilities specific to the `MessageActionItem` type. + 'messageActionItem': NotRequired['__MessageActionItem_Type_58'], +}) +""" Show message request client capabilities """ + + +ShowDocumentClientCapabilities = TypedDict('ShowDocumentClientCapabilities', { + # The client has support for the showDocument + # request. + 'support': bool, +}) +""" Client capabilities for the showDocument request. + +@since 3.16.0 """ + + +RegularExpressionsClientCapabilities = TypedDict('RegularExpressionsClientCapabilities', { + # The engine's name. + 'engine': str, + # The engine's version. + 'version': NotRequired[str], +}) +""" Client capabilities specific to regular expressions. + +@since 3.16.0 """ + + +MarkdownClientCapabilities = TypedDict('MarkdownClientCapabilities', { + # The name of the parser. + 'parser': str, + # The version of the parser. + 'version': NotRequired[str], + # A list of HTML tags that the client allows / supports in + # Markdown. + # + # @since 3.17.0 + 'allowedTags': NotRequired[List[str]], +}) +""" Client capabilities specific to the used markdown parser. + +@since 3.16.0 """ + + +__PrepareRenameResult_Type_1 = TypedDict('__PrepareRenameResult_Type_1', { + 'range': 'Range', + 'placeholder': str, +}) + + +__PrepareRenameResult_Type_2 = TypedDict('__PrepareRenameResult_Type_2', { + 'defaultBehavior': bool, +}) + + +__TextDocumentContentChangeEvent_Type_3 = TypedDict('__TextDocumentContentChangeEvent_Type_3', { + # The range of the document that changed. + 'range': 'Range', + # The optional length of the range that got replaced. + # + # @deprecated use range instead. + 'rangeLength': NotRequired[Uint], + # The new text for the provided range. + 'text': str, +}) + + +__TextDocumentContentChangeEvent_Type_4 = TypedDict('__TextDocumentContentChangeEvent_Type_4', { + # The new text of the whole document. + 'text': str, +}) -class DiagnosticSeverity: - Error = 1 - Warning = 2 - Information = 3 - Hint = 4 +__MarkedString_Type_5 = TypedDict('__MarkedString_Type_5', { + 'language': str, + 'value': str, +}) -class DiagnosticTag: - Unnecessary = 1 - Deprecated = 2 +__TextDocumentFilter_Type_6 = TypedDict('__TextDocumentFilter_Type_6', { + # A language id, like `typescript`. + 'language': str, + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': NotRequired[str], + # A glob pattern, like `*.{ts,js}`. + 'pattern': NotRequired[str], +}) -class CodeActionTriggerKind: - Invoked = 1 - Automatic = 2 +__TextDocumentFilter_Type_7 = TypedDict('__TextDocumentFilter_Type_7', { + # A language id, like `typescript`. + 'language': NotRequired[str], + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': str, + # A glob pattern, like `*.{ts,js}`. + 'pattern': NotRequired[str], +}) -class 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 +__TextDocumentFilter_Type_8 = TypedDict('__TextDocumentFilter_Type_8', { + # A language id, like `typescript`. + 'language': NotRequired[str], + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': NotRequired[str], + # A glob pattern, like `*.{ts,js}`. + 'pattern': str, +}) -class CompletionItemTag: - Deprecated = 1 +__NotebookDocumentFilter_Type_9 = TypedDict('__NotebookDocumentFilter_Type_9', { + # The type of the enclosing notebook. + 'notebookType': str, + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': NotRequired[str], + # A glob pattern. + 'pattern': NotRequired[str], +}) -class 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 +__NotebookDocumentFilter_Type_10 = TypedDict('__NotebookDocumentFilter_Type_10', { + # The type of the enclosing notebook. + 'notebookType': NotRequired[str], + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': str, + # A glob pattern. + 'pattern': NotRequired[str], +}) -class SymbolTag: - Deprecated = 1 +__NotebookDocumentFilter_Type_11 = TypedDict('__NotebookDocumentFilter_Type_11', { + # The type of the enclosing notebook. + 'notebookType': NotRequired[str], + # A Uri [scheme](#Uri.scheme), like `file` or `untitled`. + 'scheme': NotRequired[str], + # A glob pattern. + 'pattern': str, +}) -class InsertTextFormat: - PlainText = 1 - Snippet = 2 +__Full_Type_12 = TypedDict('__Full_Type_12', { + # The server supports deltas for full documents. + 'delta': NotRequired[bool], +}) -class DocumentHighlightKind: - Text = 1 - Read = 2 - Write = 3 +__ClientInfo_Type_13 = TypedDict('__ClientInfo_Type_13', { + # The name of the client as defined by the client. + 'name': str, + # The client's version as defined by the client. + 'version': NotRequired[str], +}) -class SignatureHelpTriggerKind: - Invoked = 1 - TriggerCharacter = 2 - ContentChange = 3 +__ServerInfo_Type_14 = TypedDict('__ServerInfo_Type_14', { + # The name of the server as defined by the server. + 'name': str, + # The server's version as defined by the server. + 'version': NotRequired[str], +}) -class InsertTextMode: - AsIs = 1 - AdjustIndentation = 2 +__EditRange_Type_15 = TypedDict('__EditRange_Type_15', { + 'insert': 'Range', + 'replace': 'Range', +}) -class 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" - - -class SemanticTokenModifiers: - Declaration = "declaration" - Definition = "definition" - Readonly = "readonly" - Static = "static" - Deprecated = "deprecated" - Abstract = "abstract" - Async = "async" - Modification = "modification" - Documentation = "documentation" - DefaultLibrary = "defaultLibrary" +__ItemDefaults_Type_15 = TypedDict('__ItemDefaults_Type_15', { + # A default commit character set. + # + # @since 3.17.0 + 'commitCharacters': NotRequired[List[str]], + # A default edit range. + # + # @since 3.17.0 + 'editRange': NotRequired[Union['Range', '__EditRange_Type_15']], + # A default insert text format. + # + # @since 3.17.0 + 'insertTextFormat': NotRequired['InsertTextFormat'], + # A default insert text mode. + # + # @since 3.17.0 + 'insertTextMode': NotRequired['InsertTextMode'], + # A default data value. + # + # @since 3.17.0 + 'data': NotRequired['LSPAny'], +}) -DocumentUri = str -Position = TypedDict('Position', { - 'line': int, - 'character': int +__CompletionItem_Type_17 = TypedDict('__CompletionItem_Type_17', { + # 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 + 'labelDetailsSupport': NotRequired[bool], }) -Range = TypedDict('Range', { - 'start': Position, - 'end': Position + +__Disabled_Type_18 = TypedDict('__Disabled_Type_18', { + # Human readable description of why the code action is currently disabled. + # + # This is displayed in the code actions UI. + 'reason': str, }) -TextDocumentIdentifier = TypedDict('TextDocumentIdentifier', { - 'uri': DocumentUri, -}, total=True) -TextDocumentPositionParams = TypedDict('TextDocumentPositionParams', { - 'textDocument': TextDocumentIdentifier, - 'position': Position, -}, total=True) +__Location_Type_19 = TypedDict('__Location_Type_19', { + 'uri': 'DocumentUri', +}) -ExperimentalTextDocumentRangeParams = TypedDict('ExperimentalTextDocumentRangeParams', { - 'textDocument': TextDocumentIdentifier, - 'position': Position, - 'range': Range, -}, total=True) -CodeDescription = TypedDict('CodeDescription', { - 'href': str -}, total=True) +__Full_Type_20 = TypedDict('__Full_Type_20', { + # The server supports deltas for full documents. + 'delta': NotRequired[bool], +}) -ExecuteCommandParams = TypedDict('ExecuteCommandParams', { - 'command': str, - 'arguments': Optional[List[Any]], -}, total=False) +__Structure_Type_21 = TypedDict('__Structure_Type_21', { + # The change to the cell array. + 'array': 'NotebookCellArrayChange', + # Additional opened cell text documents. + 'didOpen': NotRequired[List['TextDocumentItem']], + # Additional closed cell text documents. + 'didClose': NotRequired[List['TextDocumentIdentifier']], +}) -Command = TypedDict('Command', { - 'title': str, - 'command': str, - 'arguments': Optional[List[Any]], -}, total=True) +__TextContent_Type_22 = TypedDict('__TextContent_Type_22', { + 'document': 'VersionedTextDocumentIdentifier', + 'changes': List['TextDocumentContentChangeEvent'], +}) -CodeActionDisabledInformation = TypedDict('CodeActionDisabledInformation', { - 'reason': str -}, total=True) +__Cells_Type_21 = TypedDict('__Cells_Type_21', { + # Changes to the cell structure to add or + # remove cells. + 'structure': NotRequired['__Structure_Type_21'], + # Changes to notebook cells properties like its + # kind, execution summary or metadata. + 'data': NotRequired[List['NotebookCell']], + # Changes to the text content of notebook cells. + 'textContent': NotRequired[List['__TextContent_Type_22']], +}) -CodeLens = TypedDict('CodeLens', { - 'range': Range, - 'command': Optional[Command], - 'data': Any, - # Custom property to bring along the name of the session - 'session_name': Optional[str] -}, total=True) +__Workspace_Type_24 = TypedDict('__Workspace_Type_24', { + # The server supports workspace folder. + # + # @since 3.6.0 + 'workspaceFolders': NotRequired['WorkspaceFoldersServerCapabilities'], + # The server is interested in notifications/requests for operations on files. + # + # @since 3.16.0 + 'fileOperations': NotRequired['FileOperationOptions'], +}) -ParameterInformation = TypedDict('ParameterInformation', { - 'label': Union[str, List[int]], - 'documentation': Union[str, Dict[str, str]] -}, total=False) +__CompletionItem_Type_25 = TypedDict('__CompletionItem_Type_25', { + # 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 + 'labelDetailsSupport': NotRequired[bool], +}) -SignatureInformation = TypedDict('SignatureInformation', { - 'label': str, - 'documentation': Union[str, Dict[str, str]], - 'parameters': List[ParameterInformation], - 'activeParameter': int -}, total=False) +__Cells_Type_26 = TypedDict('__Cells_Type_26', { + 'language': str, +}) -SignatureHelp = TypedDict('SignatureHelp', { - 'signatures': List[SignatureInformation], - 'activeSignature': int, - 'activeParameter': int, -}, total=False) +__NotebookSelector_Type_26 = TypedDict('__NotebookSelector_Type_26', { + # The notebook to be synced If a string + # value is provided it matches against the + # notebook type. '*' matches every notebook. + 'notebook': Union[str, 'NotebookDocumentFilter'], + # The cells of the matching notebook to be synced. + 'cells': NotRequired[List['__Cells_Type_26']], +}) -SignatureHelpContext = TypedDict('SignatureHelpContext', { - 'triggerKind': int, - 'triggerCharacter': str, - 'isRetrigger': bool, - 'activeSignatureHelp': SignatureHelp -}, total=False) +__Cells_Type_28 = TypedDict('__Cells_Type_28', { + 'language': str, +}) -Location = TypedDict('Location', { - 'uri': DocumentUri, - 'range': Range -}, total=True) +__NotebookSelector_Type_28 = TypedDict('__NotebookSelector_Type_28', { + # The notebook to be synced If a string + # value is provided it matches against the + # notebook type. '*' matches every notebook. + 'notebook': NotRequired[Union[str, 'NotebookDocumentFilter']], + # The cells of the matching notebook to be synced. + 'cells': List['__Cells_Type_28'], +}) -DocumentSymbol = TypedDict('DocumentSymbol', { - 'name': str, - 'detail': Optional[str], - 'kind': int, - 'tags': Optional[List[int]], - 'deprecated': Optional[bool], - 'range': Range, - 'selectionRange': Range, - 'children': Optional[List[Any]] # mypy doesn't support recurive types like Optional[List['DocumentSymbol']] -}, total=True) -SymbolInformation = TypedDict('SymbolInformation', { - 'name': str, - 'kind': int, - 'tags': Optional[List[int]], - 'deprecated': Optional[bool], - 'location': Location, - 'containerName': Optional[str] -}, total=True) +__Cells_Type_30 = TypedDict('__Cells_Type_30', { + 'language': str, +}) -LocationLink = TypedDict('LocationLink', { - 'originSelectionRange': Optional[Range], - 'targetUri': DocumentUri, - 'targetRange': Range, - 'targetSelectionRange': Range -}, total=False) -DiagnosticRelatedInformation = TypedDict('DiagnosticRelatedInformation', { - 'location': Location, - 'message': str -}, total=False) +__NotebookSelector_Type_30 = TypedDict('__NotebookSelector_Type_30', { + # The notebook to be synced If a string + # value is provided it matches against the + # notebook type. '*' matches every notebook. + 'notebook': Union[str, 'NotebookDocumentFilter'], + # The cells of the matching notebook to be synced. + 'cells': NotRequired[List['__Cells_Type_30']], +}) -Diagnostic = TypedDict('Diagnostic', { - 'range': Range, - 'severity': int, - 'code': Union[int, str], - 'codeDescription': CodeDescription, - 'source': str, - 'message': str, - 'tags': List[int], - 'relatedInformation': List[DiagnosticRelatedInformation] -}, total=False) -CodeAction = TypedDict('CodeAction', { - 'title': str, - 'kind': str, # NotRequired - 'diagnostics': List[Diagnostic], # NotRequired - 'isPreferred': bool, # NotRequired - 'disabled': CodeActionDisabledInformation, # NotRequired - 'edit': dict, # NotRequired - 'command': Command, # NotRequired - 'data': Any # NotRequired -}, total=False) +__Cells_Type_32 = TypedDict('__Cells_Type_32', { + 'language': str, +}) -CodeActionContext = TypedDict('CodeActionContext', { - 'diagnostics': List[Diagnostic], - 'only': List[str], # NotRequired - 'triggerKind': int, # NotRequired -}, total=False) -CodeActionParams = TypedDict('CodeActionParams', { - 'textDocument': TextDocumentIdentifier, - 'range': Range, - 'context': CodeActionContext, -}, total=True) +__NotebookSelector_Type_32 = TypedDict('__NotebookSelector_Type_32', { + # The notebook to be synced If a string + # value is provided it matches against the + # notebook type. '*' matches every notebook. + 'notebook': NotRequired[Union[str, 'NotebookDocumentFilter']], + # The cells of the matching notebook to be synced. + 'cells': List['__Cells_Type_32'], +}) -TextEdit = TypedDict('TextEdit', { - 'newText': str, - 'range': Range -}, total=True) -CompletionItemLabelDetails = TypedDict('CompletionItemLabelDetails', { - 'detail': str, - 'description': str -}, total=False) +__StaleRequestSupport_Type_34 = TypedDict('__StaleRequestSupport_Type_34', { + # The client will actively cancel the request. + 'cancel': bool, + # The list of requests for which the client + # will retry the request if it receives a + # response with error code `ContentModified` + 'retryOnContentModified': List[str], +}) -InsertReplaceEdit = TypedDict('InsertReplaceEdit', { - 'newText': str, - 'insert': Range, - 'replace': Range -}, total=True) -CompletionItem = TypedDict('CompletionItem', { - 'additionalTextEdits': List[TextEdit], - 'command': Command, - 'commitCharacters': List[str], - 'data': Any, - 'deprecated': bool, - 'detail': str, - 'documentation': Union[str, Dict[str, str]], - 'filterText': str, - 'insertText': str, - 'insertTextFormat': InsertTextFormat, - 'insertTextMode': InsertTextMode, - 'kind': int, - 'label': str, - 'labelDetails': CompletionItemLabelDetails, - 'preselect': bool, - 'sortText': str, - 'tags': List[int], - 'textEdit': Union[TextEdit, InsertReplaceEdit] -}, total=False) +__ChangeAnnotationSupport_Type_35 = TypedDict('__ChangeAnnotationSupport_Type_35', { + # 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. + 'groupsOnLabel': NotRequired[bool], +}) -CompletionList = TypedDict('CompletionList', { - 'isIncomplete': bool, - 'items': List[CompletionItem], -}, total=True) -DocumentLink = TypedDict('DocumentLink', { - 'range': Range, - 'target': DocumentUri, - 'tooltip': str, - 'data': Any -}, total=False) +__SymbolKind_Type_36 = TypedDict('__SymbolKind_Type_36', { + # 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. + 'valueSet': NotRequired[List['SymbolKind']], +}) + -MarkedString = Union[str, Dict[str, str]] +__TagSupport_Type_37 = TypedDict('__TagSupport_Type_37', { + # The tags supported by the client. + 'valueSet': List['SymbolTag'], +}) -MarkupContent = Dict[str, str] -Hover = TypedDict('Hover', { - 'contents': Union[MarkedString, MarkupContent, List[MarkedString]], - 'range': Range, -}, total=False) +__ResolveSupport_Type_38 = TypedDict('__ResolveSupport_Type_38', { + # The properties that a client can resolve lazily. Usually + # `location.range` + 'properties': List[str], +}) -PublishDiagnosticsParams = TypedDict('PublishDiagnosticsParams', { - 'uri': DocumentUri, - 'version': Optional[int], - 'diagnostics': List[Diagnostic], -}, total=False) +__TagSupport_Type_39 = TypedDict('__TagSupport_Type_39', { + # The tags supported by the client. + 'valueSet': List['CompletionItemTag'], +}) -FileSystemWatcher = TypedDict('FileSystemWatcher', { - 'globPattern': str, - 'kind': int, -}, total=True) -DidChangeWatchedFilesRegistrationOptions = TypedDict('DidChangeWatchedFilesRegistrationOptions', { - 'watchers': List[FileSystemWatcher], -}, total=True) +__ResolveSupport_Type_40 = TypedDict('__ResolveSupport_Type_40', { + # The properties that a client can resolve lazily. + 'properties': List[str], +}) -InlayHintParams = TypedDict('InlayHintParams', { - 'textDocument': TextDocumentIdentifier, - 'range': Range, -}, total=True) -InlayHintLabelPart = TypedDict('InlayHintLabelPart', { - 'value': str, - 'tooltip': Union[str, MarkupContent], # NotRequired - 'location': Location, # NotRequired - 'command': Command # NotRequired -}, total=False) +__InsertTextModeSupport_Type_41 = TypedDict('__InsertTextModeSupport_Type_41', { + 'valueSet': List['InsertTextMode'], +}) -class InlayHintKind: - Type = 1 - Parameter = 2 +__CompletionItem_Type_39 = TypedDict('__CompletionItem_Type_39', { + # 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. + 'snippetSupport': NotRequired[bool], + # Client supports commit characters on a completion item. + 'commitCharactersSupport': NotRequired[bool], + # Client supports the following content formats for the documentation + # property. The order describes the preferred format of the client. + 'documentationFormat': NotRequired[List['MarkupKind']], + # Client supports the deprecated property on a completion item. + 'deprecatedSupport': NotRequired[bool], + # Client supports the preselect property on a completion item. + 'preselectSupport': NotRequired[bool], + # 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 + 'tagSupport': NotRequired['__TagSupport_Type_39'], + # 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 + 'insertReplaceSupport': NotRequired[bool], + # 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 + 'resolveSupport': NotRequired['__ResolveSupport_Type_40'], + # 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 + 'insertTextModeSupport': NotRequired['__InsertTextModeSupport_Type_41'], + # The client has support for completion item label + # details (see also `CompletionItemLabelDetails`). + # + # @since 3.17.0 + 'labelDetailsSupport': NotRequired[bool], +}) -InlayHint = TypedDict('InlayHint', { - 'position': Position, - 'label': Union[str, List[InlayHintLabelPart]], - 'kind': int, # NotRequired - 'textEdits': List[TextEdit], # NotRequired - 'tooltip': Union[str, MarkupContent], # NotRequired - 'paddingLeft': bool, # NotRequired - 'paddingRight': bool, # NotRequired - 'data': Any # NotRequired -}, total=False) +__CompletionItemKind_Type_43 = TypedDict('__CompletionItemKind_Type_43', { + # 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. + 'valueSet': NotRequired[List['CompletionItemKind']], +}) + + +__CompletionList_Type_44 = TypedDict('__CompletionList_Type_44', { + # 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 + 'itemDefaults': NotRequired[List[str]], +}) + + +__ParameterInformation_Type_45 = TypedDict('__ParameterInformation_Type_45', { + # The client supports processing label offsets instead of a + # simple label string. + # + # @since 3.14.0 + 'labelOffsetSupport': NotRequired[bool], +}) + + +__SignatureInformation_Type_45 = TypedDict('__SignatureInformation_Type_45', { + # Client supports the following content formats for the documentation + # property. The order describes the preferred format of the client. + 'documentationFormat': NotRequired[List['MarkupKind']], + # Client capabilities specific to parameter information. + 'parameterInformation': NotRequired['__ParameterInformation_Type_45'], + # The client supports the `activeParameter` property on `SignatureInformation` + # literal. + # + # @since 3.16.0 + 'activeParameterSupport': NotRequired[bool], +}) + + +__SymbolKind_Type_47 = TypedDict('__SymbolKind_Type_47', { + # 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. + 'valueSet': NotRequired[List['SymbolKind']], +}) + + +__TagSupport_Type_48 = TypedDict('__TagSupport_Type_48', { + # The tags supported by the client. + 'valueSet': List['SymbolTag'], +}) + + +__CodeActionKind_Type_49 = TypedDict('__CodeActionKind_Type_49', { + # 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. + 'valueSet': List['CodeActionKind'], +}) + + +__CodeActionLiteralSupport_Type_49 = TypedDict('__CodeActionLiteralSupport_Type_49', { + # The code action kind is support with the following value + # set. + 'codeActionKind': '__CodeActionKind_Type_49', +}) + + +__ResolveSupport_Type_51 = TypedDict('__ResolveSupport_Type_51', { + # The properties that a client can resolve lazily. + 'properties': List[str], +}) + + +__FoldingRangeKind_Type_52 = TypedDict('__FoldingRangeKind_Type_52', { + # 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. + 'valueSet': NotRequired[List['FoldingRangeKind']], +}) -InlayHintResponse = Union[List[InlayHint], None] -WatchKind = int -WatchKindCreate = 1 -WatchKindChange = 2 -WatchKindDelete = 4 +__FoldingRange_Type_53 = TypedDict('__FoldingRange_Type_53', { + # 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 + 'collapsedText': NotRequired[bool], +}) + + +__TagSupport_Type_54 = TypedDict('__TagSupport_Type_54', { + # The tags supported by the client. + 'valueSet': List['DiagnosticTag'], +}) + + +__Full_Type_55 = TypedDict('__Full_Type_55', { + # The client will send the `textDocument/semanticTokens/full/delta` request if + # the server provides a corresponding handler. + 'delta': NotRequired[bool], +}) + -FileChangeType = int -FileChangeTypeCreated = 1 -FileChangeTypeChanged = 2 -FileChangeTypeDeleted = 3 +__Requests_Type_55 = TypedDict('__Requests_Type_55', { + # The client will send the `textDocument/semanticTokens/range` request if + # the server provides a corresponding handler. + 'range': NotRequired[Union[bool, dict]], + # The client will send the `textDocument/semanticTokens/full` request if + # the server provides a corresponding handler. + 'full': NotRequired[Union[bool, '__Full_Type_55']], +}) + + +__ResolveSupport_Type_57 = TypedDict('__ResolveSupport_Type_57', { + # The properties that a client can resolve lazily. + 'properties': List[str], +}) -FileEvent = TypedDict("FileEvent", { - "uri": DocumentUri, - "type": FileChangeType, -}, total=True) + +__MessageActionItem_Type_58 = TypedDict('__MessageActionItem_Type_58', { + # Whether the client supports additional attributes which + # are preserved and send back to the server in the + # request's response. + 'additionalPropertiesSupport': NotRequired[bool], +}) + +# AUTOGENERATED TYPES END class Request: @@ -530,23 +5940,6 @@ def to_payload(self, id: int) -> Dict[str, Any]: } -class ErrorCode: - # Defined by JSON RPC - ParseError = -32700 - InvalidRequest = -32600 - MethodNotFound = -32601 - InvalidParams = -32602 - InternalError = -32603 - ServerErrorStart = -32099 - ServerErrorEnd = -32000 - ServerNotInitialized = -32002 - UnknownErrorCode = -32001 - - # Defined by the protocol - RequestCancelled = -32800 - ContentModified = -32801 - - class Error(Exception): def __init__(self, code: int, message: str, data: Any = None) -> None: @@ -569,7 +5962,7 @@ def __str__(self) -> str: @classmethod def from_exception(cls, ex: Exception) -> 'Error': - return Error(ErrorCode.InternalError, str(ex)) + return Error(ErrorCodes.InternalError, str(ex)) class Response: @@ -662,52 +6055,34 @@ def __eq__(self, other: object) -> bool: return self.row == other.row and self.col == other.col @classmethod - def from_lsp(cls, point: Position) -> 'Point': + def from_lsp(cls, point: 'Position') -> 'Point': return Point(point['line'], point['character']) - def to_lsp(self) -> Position: + def to_lsp(self) -> 'Position': return { "line": self.row, "character": self.col } -class WorkspaceFolder: - - __slots__ = ('name', 'path') - - def __init__(self, name: str, path: str) -> None: - self.name = name - self.path = path - - @classmethod - def from_path(cls, path: str) -> 'WorkspaceFolder': - return cls(os.path.basename(path) or path, path) - - def __hash__(self) -> int: - return hash((self.name, self.path)) - - def __repr__(self) -> str: - return "{}('{}', '{}')".format(self.__class__.__name__, self.name, self.path) - - def __str__(self) -> str: - return self.path - - def __eq__(self, other: Any) -> bool: - if isinstance(other, WorkspaceFolder): - return self.name == other.name and self.path == other.path - return False - - def to_lsp(self) -> Dict[str, str]: - return {"name": self.name, "uri": self.uri()} - - def uri(self) -> str: - return filename_to_uri(self.path) - - def includes_uri(self, uri: str) -> bool: - return uri.startswith(self.uri()) +CodeLensExtended = TypedDict('CodeLensExtended', { + # The range in which this code lens is valid. Should only span a single line. + 'range': 'Range', + # The command this code lens represents. + 'command': NotRequired['Command'], + # A data entry field that is preserved on a code lens item between + # a [CodeLensRequest](#CodeLensRequest) and a [CodeLensResolveRequest] + # (#CodeLensResolveRequest) + 'data': NotRequired['LSPAny'], + # Custom property to bring along the name of the session + 'session_name': str +}) +ExperimentalTextDocumentRangeParams = TypedDict('ExperimentalTextDocumentRangeParams', { + 'textDocument': TextDocumentIdentifier, + 'position': Position, + 'range': Range, +}) # Temporary for backward compatibility with LSP packages. - RangeLsp = Range diff --git a/plugin/core/registry.py b/plugin/core/registry.py index 63b2c3c59..0f1cfe7d2 100644 --- a/plugin/core/registry.py +++ b/plugin/core/registry.py @@ -136,7 +136,7 @@ def sessions(self, capability_path: Optional[str] = None) -> Generator[Session, class LspRestartServerCommand(LspTextCommand): - def run(self, edit: Any, config_name: str = None) -> None: + def run(self, edit: Any, config_name: Optional[str] = None) -> None: window = self.view.window() if not window: return diff --git a/plugin/core/sessions.py b/plugin/core/sessions.py index 6bd809489..a9d559f7a 100644 --- a/plugin/core/sessions.py +++ b/plugin/core/sessions.py @@ -19,7 +19,9 @@ from .progress import WindowProgressReporter from .promise import PackagedTask from .promise import Promise -from .protocol import CodeAction, CodeLens, InsertTextMode, Location, LocationLink +from .protocol import ClientCapabilities +from .protocol import CodeAction, CodeActionKind +from .protocol import CodeLensExtended from .protocol import Command from .protocol import CompletionItemKind from .protocol import CompletionItemTag @@ -30,9 +32,16 @@ from .protocol import DocumentLink from .protocol import DocumentUri from .protocol import Error -from .protocol import ErrorCode +from .protocol import ErrorCodes from .protocol import ExecuteCommandParams +from .protocol import FailureHandlingKind from .protocol import FileEvent +from .protocol import GeneralClientCapabilities +from .protocol import InsertTextMode +from .protocol import Location +from .protocol import LocationLink +from .protocol import LSPObject +from .protocol import MarkupKind from .protocol import Notification from .protocol import Range from .protocol import Request @@ -41,7 +50,12 @@ from .protocol import SemanticTokenTypes from .protocol import SymbolKind from .protocol import SymbolTag -from .protocol import WorkspaceFolder +from .protocol import TextDocumentClientCapabilities +from .protocol import TextDocumentSyncKind +from .protocol import TokenFormat +from .protocol import WindowClientCapabilities +from .protocol import WorkspaceClientCapabilities +from .protocol import WorkspaceEdit from .settings import client_configs from .settings import globalprefs from .transports import Transport @@ -55,7 +69,7 @@ from .types import method_to_capability from .types import SettingsRegistration from .types import sublime_pattern_to_glob -from .typing import Callable, cast, Dict, Any, Optional, List, Tuple, Generator, Iterable, Type, Protocol, Mapping, Union # noqa: E501 +from .typing import Callable, cast, Dict, Any, Optional, List, Tuple, Generator, Iterable, Type, Protocol, Mapping, TypeVar, Union # noqa: E501 from .url import filename_to_uri from .url import parse_uri from .version import __version__ @@ -65,6 +79,7 @@ from .views import MarkdownLangMap from .views import SEMANTIC_TOKENS_MAP from .workspace import is_subpath_of +from .workspace import WorkspaceFolder from abc import ABCMeta from abc import abstractmethod from weakref import WeakSet @@ -74,8 +89,8 @@ import sublime import weakref - InitCallback = Callable[['Session', bool], None] +T = TypeVar('T') def get_semantic_tokens_map(custom_tokens_map: Optional[Dict[str, str]]) -> Tuple[Tuple[str, str], ...]: @@ -198,17 +213,17 @@ def _enum_like_class_to_list(c: Type[object]) -> List[Union[int, str]]: def get_initialize_params(variables: Dict[str, str], workspace_folders: List[WorkspaceFolder], config: ClientConfig) -> dict: - completion_kinds = _enum_like_class_to_list(CompletionItemKind) - symbol_kinds = _enum_like_class_to_list(SymbolKind) - diagnostic_tag_value_set = _enum_like_class_to_list(DiagnosticTag) - completion_tag_value_set = _enum_like_class_to_list(CompletionItemTag) - symbol_tag_value_set = _enum_like_class_to_list(SymbolTag) - semantic_token_types = _enum_like_class_to_list(SemanticTokenTypes) + completion_kinds = cast(List[CompletionItemKind], _enum_like_class_to_list(CompletionItemKind)) + symbol_kinds = cast(List[SymbolKind], _enum_like_class_to_list(SymbolKind)) + diagnostic_tag_value_set = cast(List[DiagnosticTag], _enum_like_class_to_list(DiagnosticTag)) + completion_tag_value_set = cast(List[CompletionItemTag], _enum_like_class_to_list(CompletionItemTag)) + symbol_tag_value_set = cast(List[SymbolTag], _enum_like_class_to_list(SymbolTag)) + semantic_token_types = cast(List[str], _enum_like_class_to_list(SemanticTokenTypes)) if config.semantic_tokens is not None: for token_type in config.semantic_tokens.keys(): if token_type not in semantic_token_types: semantic_token_types.append(token_type) - semantic_token_modifiers = _enum_like_class_to_list(SemanticTokenModifiers) + semantic_token_modifiers = cast(List[str], _enum_like_class_to_list(SemanticTokenModifiers)) first_folder = workspace_folders[0] if workspace_folders else None general_capabilities = { # https://microsoft.github.io/language-server-protocol/specification#regExp @@ -224,7 +239,7 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "parser": "Python-Markdown", "version": mdpopups.markdown.__version__ # type: ignore } - } + } # type: GeneralClientCapabilities text_document_capabilities = { "synchronization": { "dynamicRegistration": True, # exceptional @@ -234,14 +249,14 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor }, "hover": { "dynamicRegistration": True, - "contentFormat": ["markdown", "plaintext"] + "contentFormat": [MarkupKind.Markdown, MarkupKind.PlainText] }, "completion": { "dynamicRegistration": True, "completionItem": { "snippetSupport": True, "deprecatedSupport": True, - "documentationFormat": ["markdown", "plaintext"], + "documentationFormat": [MarkupKind.Markdown, MarkupKind.PlainText], "tagSupport": { "valueSet": completion_tag_value_set }, @@ -264,7 +279,7 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "contextSupport": True, "signatureInformation": { "activeParameterSupport": True, - "documentationFormat": ["markdown", "plaintext"], + "documentationFormat": [MarkupKind.Markdown, MarkupKind.PlainText], "parameterInformation": { "labelOffsetSupport": True } @@ -317,12 +332,12 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "codeActionLiteralSupport": { "codeActionKind": { "valueSet": [ - "quickfix", - "refactor", - "refactor.extract", - "refactor.inline", - "refactor.rewrite", - "source.organizeImports" + CodeActionKind.QuickFix, + CodeActionKind.Refactor, + CodeActionKind.RefactorExtract, + CodeActionKind.RefactorInline, + CodeActionKind.RefactorRewrite, + CodeActionKind.SourceOrganizeImports, ] } }, @@ -374,13 +389,13 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "tokenTypes": semantic_token_types, "tokenModifiers": semantic_token_modifiers, "formats": [ - "relative" + TokenFormat.Relative ], "overlappingTokenSupport": False, "multilineTokenSupport": True, "augmentsSyntaxTokens": True } - } + } # type: TextDocumentClientCapabilities workspace_capabilites = { "applyEdit": True, "didChangeConfiguration": { @@ -389,7 +404,7 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "executeCommand": {}, "workspaceEdit": { "documentChanges": True, - "failureHandling": "abort", + "failureHandling": FailureHandlingKind.Abort, }, "workspaceFolders": True, "symbol": { @@ -411,7 +426,7 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor "semanticTokens": { "refreshSupport": True } - } + } # type: WorkspaceClientCapabilities window_capabilities = { "showDocument": { "support": True @@ -422,15 +437,15 @@ def get_initialize_params(variables: Dict[str, str], workspace_folders: List[Wor } }, "workDoneProgress": True - } + } # type: WindowClientCapabilities capabilities = { "general": general_capabilities, "textDocument": text_document_capabilities, "workspace": workspace_capabilites, "window": window_capabilities, - } + } # type: ClientCapabilities if config.experimental_capabilities is not None: - capabilities['experimental'] = config.experimental_capabilities + capabilities['experimental'] = cast(LSPObject, config.experimental_capabilities) if get_file_watcher_implementation(): workspace_capabilites["didChangeWatchedFiles"] = {"dynamicRegistration": True} return { @@ -498,7 +513,7 @@ def on_request_finished_async(self, request_id: int) -> None: def on_request_progress(self, request_id: int, params: Dict[str, Any]) -> None: ... - def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLens, None, None]: + def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLensExtended, None, None]: ... def start_code_lenses_async(self) -> None: @@ -576,7 +591,7 @@ class AbstractViewListener(metaclass=ABCMeta): TOTAL_ERRORS_AND_WARNINGS_STATUS_KEY = "lsp_total_errors_and_warnings" - view = None # type: sublime.View + view = cast(sublime.View, None) @abstractmethod def session_async(self, capability_path: str, point: Optional[int] = None) -> Optional['Session']: @@ -1276,7 +1291,7 @@ def get_capability(self, capability: str) -> Optional[Any]: def should_notify_did_open(self) -> bool: return self.capabilities.should_notify_did_open() - def text_sync_kind(self) -> int: + def text_sync_kind(self) -> TextDocumentSyncKind: return self.capabilities.text_sync_kind() def should_notify_did_change_workspace_folders(self) -> bool: @@ -1566,15 +1581,17 @@ def _apply_code_action_async(self, code_action: Union[CodeAction, Error, None]) edit = code_action.get("edit") promise = self.apply_workspace_edit_async(edit) if edit else Promise.resolve(None) command = code_action.get("command") - if isinstance(command, dict): + if command is not None: execute_command = { "command": command["command"], - "arguments": command.get("arguments"), } # type: ExecuteCommandParams + arguments = command.get("arguments") + if arguments is not None: + execute_command['arguments'] = arguments return promise.then(lambda _: self.execute_command(execute_command, False)) return promise - def apply_workspace_edit_async(self, edit: Dict[str, Any]) -> Promise[None]: + def apply_workspace_edit_async(self, edit: WorkspaceEdit) -> Promise[None]: """ Apply workspace edits, and return a promise that resolves on the async thread again after the edits have been applied. @@ -1725,6 +1742,9 @@ def m_client_registerCapability(self, params: Any, request_id: Any) -> None: file_watchers = [] # type: List[FileWatcher] for config in capability_options.get("watchers", []): pattern = config.get("globPattern", '') + if not isinstance(pattern, str): + print('LSP: Relative glob patterns are not supported in File Watcher yet.') + continue kind = lsp_watch_kind_to_file_watcher_event_types(config.get("kind") or DEFAULT_KIND) for folder in self.get_workspace_folders(): ignores = self._get_global_ignore_globs(folder.path) @@ -1951,7 +1971,7 @@ def deduce_payload( req_id = payload["id"] self._logger.incoming_request(req_id, method, result) if handler is None: - self.send_error_response(req_id, Error(ErrorCode.MethodNotFound, method)) + self.send_error_response(req_id, Error(ErrorCodes.MethodNotFound, method)) else: tup = (handler, result, req_id, "request", method) return tup @@ -1997,7 +2017,7 @@ def response_handler( ) -> Tuple[Optional[Callable], Optional[str], Any, bool]: request, handler, error_handler = self._response_handlers.pop(response_id, (None, None, None)) if not request: - error = {"code": ErrorCode.InvalidParams, "message": "unknown response ID {}".format(response_id)} + error = {"code": ErrorCodes.InvalidParams, "message": "unknown response ID {}".format(response_id)} return (print_to_status_bar, None, error, True) self._invoke_views(request, "on_request_finished_async", response_id) if "result" in response and "error" not in response: @@ -2007,7 +2027,7 @@ def response_handler( if "result" not in response and "error" in response: error = response["error"] else: - error = {"code": ErrorCode.InvalidParams, "message": "invalid response payload"} + error = {"code": ErrorCodes.InvalidParams, "message": "invalid response payload"} return (error_handler, request.method, error, True) def _get_handler(self, method: str) -> Optional[Callable]: diff --git a/plugin/core/transports.py b/plugin/core/transports.py index 21595bc5b..29e69d060 100644 --- a/plugin/core/transports.py +++ b/plugin/core/transports.py @@ -263,8 +263,8 @@ def start_subprocess() -> subprocess.Popen: writer = process.stdin # type: ignore if not reader or not writer: raise RuntimeError('Failed initializing transport: reader: {}, writer: {}'.format(reader, writer)) - return ProcessTransport(config.name, process, sock, reader, writer, process.stderr, json_rpc_processor, - callback_object) + return ProcessTransport( + config.name, process, sock, reader, writer, process.stderr, json_rpc_processor, callback_object) # type: ignore _subprocesses = weakref.WeakSet() # type: weakref.WeakSet[subprocess.Popen] @@ -356,10 +356,10 @@ def start_in_background(d: _SubprocessData) -> None: # Await one client connection (blocking!) sock, _ = listener_socket.accept() thread.join() - reader = sock.makefile('rwb') # type: IO[bytes] + reader = sock.makefile('rwb') # type: ignore writer = reader assert data.process - return data.process, sock, reader, writer + return data.process, sock, reader, writer # type: ignore def _connect_tcp(port: int) -> Optional[socket.socket]: diff --git a/plugin/core/types.py b/plugin/core/types.py index 1eafeb5c4..56c6d2101 100644 --- a/plugin/core/types.py +++ b/plugin/core/types.py @@ -1,7 +1,7 @@ from .collections import DottedDict from .file_watcher import FileWatcherEventType from .logging import debug, set_debug_logging -from .protocol import TextDocumentSyncKindNone +from .protocol import TextDocumentSyncKind from .typing import Any, Optional, List, Dict, Generator, Callable, Iterable, Union, Set, Tuple, TypedDict, TypeVar from .typing import cast from .url import filename_to_uri @@ -183,41 +183,40 @@ def read_list_setting(settings_obj: sublime.Settings, key: str, default: list) - class Settings: - # This is only for mypy - diagnostics_additional_delay_auto_complete_ms = None # type: int - diagnostics_delay_ms = None # type: int - diagnostics_gutter_marker = None # type: str - diagnostics_highlight_style = None # type: Union[str, Dict[str, str]] - diagnostics_panel_include_severity_level = None # type: int - disabled_capabilities = None # type: List[str] - document_highlight_style = None # type: str - hover_highlight_style = None # type: str - inhibit_snippet_completions = None # type: bool - inhibit_word_completions = None # type: bool - link_highlight_style = None # type: str - completion_insert_mode = None # type: str - log_debug = None # type: bool - log_max_size = None # type: int - log_server = None # type: List[str] - lsp_code_actions_on_save = None # type: Dict[str, bool] - lsp_format_on_save = None # type: bool - on_save_task_timeout_ms = None # type: int - only_show_lsp_completions = None # type: bool - popup_max_characters_height = None # type: int - popup_max_characters_width = None # type: int - semantic_highlighting = None # type: bool - show_code_actions = None # type: str - show_code_lens = None # type: str - show_inlay_hints = None # type: bool - show_code_actions_in_hover = None # type: bool - show_diagnostics_count_in_view_status = None # type: bool - show_multiline_diagnostics_highlights = None # type: bool - show_diagnostics_in_view_status = None # type: bool - show_diagnostics_panel_on_save = None # type: int - show_diagnostics_severity_level = None # type: int - show_references_in_quick_panel = None # type: bool - show_symbol_action_links = None # type: bool - show_view_status = None # type: bool + diagnostics_additional_delay_auto_complete_ms = cast(int, None) + diagnostics_delay_ms = cast(int, None) + diagnostics_gutter_marker = cast(str, None) + diagnostics_highlight_style = cast(Union[str, Dict[str, str]], None) + diagnostics_panel_include_severity_level = cast(int, None) + disabled_capabilities = cast(List[str], None) + document_highlight_style = cast(str, None) + hover_highlight_style = cast(str, None) + inhibit_snippet_completions = cast(bool, None) + inhibit_word_completions = cast(bool, None) + link_highlight_style = cast(str, None) + completion_insert_mode = cast(str, None) + log_debug = cast(bool, None) + log_max_size = cast(int, None) + log_server = cast(List[str], None) + lsp_code_actions_on_save = cast(Dict[str, bool], None) + lsp_format_on_save = cast(bool, None) + on_save_task_timeout_ms = cast(int, None) + only_show_lsp_completions = cast(bool, None) + popup_max_characters_height = cast(int, None) + popup_max_characters_width = cast(int, None) + semantic_highlighting = cast(bool, None) + show_code_actions = cast(str, None) + show_code_lens = cast(str, None) + show_inlay_hints = cast(bool, None) + show_code_actions_in_hover = cast(bool, None) + show_diagnostics_count_in_view_status = cast(bool, None) + show_multiline_diagnostics_highlights = cast(bool, None) + show_diagnostics_in_view_status = cast(bool, None) + show_diagnostics_panel_on_save = cast(int, None) + show_diagnostics_severity_level = cast(int, None) + show_references_in_quick_panel = cast(bool, None) + show_symbol_action_links = cast(bool, None) + show_view_status = cast(bool, None) def __init__(self, s: sublime.Settings) -> None: self.update(s) @@ -538,9 +537,9 @@ def assign(self, d: Dict[str, Any]) -> None: def should_notify_did_open(self) -> bool: return "textDocumentSync.didOpen" in self - def text_sync_kind(self) -> int: - value = self.get("textDocumentSync.change.syncKind") - return value if isinstance(value, int) else TextDocumentSyncKindNone + def text_sync_kind(self) -> TextDocumentSyncKind: + value = self.get("textDocumentSync.change.syncKind") # type: TextDocumentSyncKind + return value if isinstance(value, int) else TextDocumentSyncKind.None_ def should_notify_did_change_workspace_folders(self) -> bool: return "workspace.workspaceFolders.changeNotifications" in self diff --git a/plugin/core/typing.py b/plugin/core/typing.py index 05a5df5e2..cfc7153a2 100644 --- a/plugin/core/typing.py +++ b/plugin/core/typing.py @@ -2,6 +2,7 @@ if sys.version_info >= (3, 8, 0): + from enum import Enum, IntEnum, IntFlag from typing import Any from typing import Callable from typing import cast @@ -21,9 +22,11 @@ from typing import Set from typing import Tuple from typing import Type - from typing import TypedDict from typing import TypeVar from typing import Union + from typing_extensions import NotRequired + from typing_extensions import Required + from typing_extensions import TypedDict else: @@ -54,6 +57,15 @@ class TypedDict(Type, dict): # type: ignore def __init__(*args, **kwargs) -> None: # type: ignore pass + class Enum(Type): # type: ignore + pass + + class IntEnum(Type): # type: ignore + pass + + class IntFlag(Type): # type: ignore + pass + class Any(Type): # type: ignore pass @@ -108,5 +120,11 @@ class Protocol(Type): # type: ignore class Sequence(Type): # type: ignore pass + class Required(Type): # type: ignore + pass + + class NotRequired(Type): # type: ignore + pass + def TypeVar(*args, **kwargs) -> Any: # type: ignore return object diff --git a/plugin/core/views.py b/plugin/core/views.py index bfe7a538a..23c77c044 100644 --- a/plugin/core/views.py +++ b/plugin/core/views.py @@ -1,5 +1,6 @@ from .css import css as lsp_css from .protocol import CodeAction +from .protocol import CodeActionKind from .protocol import CodeActionContext from .protocol import CodeActionParams from .protocol import CodeActionTriggerKind @@ -41,6 +42,7 @@ import tempfile MarkdownLangMap = Dict[str, Tuple[Tuple[str, ...], Tuple[str, ...]]] +SublimeKind = Tuple[int, str, str] DOCUMENT_LINK_FLAGS = sublime.HIDE_ON_MINIMAP | sublime.DRAW_NO_FILL | sublime.DRAW_NO_OUTLINE | sublime.DRAW_SOLID_UNDERLINE # noqa: E501 @@ -126,7 +128,7 @@ CompletionItemKind.Event: KIND_EVENT, CompletionItemKind.Operator: KIND_OPERATOR, CompletionItemKind.TypeParameter: KIND_TYPEPARAMETER -} +} # type: Dict[CompletionItemKind, SublimeKind] SYMBOL_KINDS = { SymbolKind.File: KIND_FILE, @@ -155,20 +157,20 @@ SymbolKind.Event: KIND_EVENT, SymbolKind.Operator: KIND_OPERATOR, SymbolKind.TypeParameter: KIND_TYPEPARAMETER -} +} # type: Dict[SymbolKind, SublimeKind] DIAGNOSTIC_KINDS = { DiagnosticSeverity.Error: KIND_ERROR, DiagnosticSeverity.Warning: KIND_WARNING, DiagnosticSeverity.Information: KIND_INFORMATION, DiagnosticSeverity.Hint: KIND_HINT -} +} # type: Dict[DiagnosticSeverity, SublimeKind] CODE_ACTION_KINDS = { - "quickfix": KIND_QUICKFIX, - "refactor": KIND_REFACTOR, - "source": KIND_SOURCE -} + CodeActionKind.QuickFix: KIND_QUICKFIX, + CodeActionKind.Refactor: KIND_REFACTOR, + CodeActionKind.Source: KIND_SOURCE +} # type: Dict[CodeActionKind, SublimeKind] SYMBOL_KIND_SCOPES = { SymbolKind.File: "string", @@ -197,19 +199,19 @@ SymbolKind.Event: "entity.name.function", SymbolKind.Operator: "keyword.operator", SymbolKind.TypeParameter: "variable.parameter.type" -} +} # type: Dict[SymbolKind, str] DOCUMENT_HIGHLIGHT_KINDS = { DocumentHighlightKind.Text: "text", DocumentHighlightKind.Read: "read", DocumentHighlightKind.Write: "write" -} +} # type: Dict[DocumentHighlightKind, str] DOCUMENT_HIGHLIGHT_KIND_SCOPES = { DocumentHighlightKind.Text: "region.bluish markup.highlight.text.lsp", DocumentHighlightKind.Read: "region.greenish markup.highlight.read.lsp", DocumentHighlightKind.Write: "region.yellowish markup.highlight.write.lsp" -} +} # type: Dict[DocumentHighlightKind, str] SEMANTIC_TOKENS_MAP = { "namespace": "variable.other.namespace.lsp", @@ -468,10 +470,10 @@ def did_change_text_document_params(view: sublime.View, version: int, content_changes = [] # type: List[Dict[str, Any]] result = {"textDocument": versioned_text_document_identifier(view, version), "contentChanges": content_changes} if changes is None: - # TextDocumentSyncKindFull + # TextDocumentSyncKind.Full content_changes.append({"text": entire_content(view)}) else: - # TextDocumentSyncKindIncremental + # TextDocumentSyncKind.Incremental for change in changes: content_changes.append(render_text_change(change)) return result @@ -564,7 +566,7 @@ def text_document_code_action_params( view: sublime.View, region: sublime.Region, diagnostics: List[Diagnostic], - on_save_actions: Optional[List[str]] = None, + on_save_actions: Optional[List[CodeActionKind]] = None, manual: bool = False ) -> CodeActionParams: context = { @@ -813,7 +815,7 @@ def format_severity(severity: int) -> str: return "???" -def diagnostic_severity(diagnostic: Diagnostic) -> int: +def diagnostic_severity(diagnostic: Diagnostic) -> DiagnosticSeverity: return diagnostic.get("severity", DiagnosticSeverity.Error) @@ -954,7 +956,7 @@ def format_diagnostic_for_html( ] code_description = diagnostic.get("codeDescription") if code_description: - code = make_link(code_description["href"], diagnostic["code"]) # type: Optional[str] + code = make_link(code_description["href"], diagnostic.get("code")) # type: Optional[str] elif "code" in diagnostic: code = _with_color(diagnostic["code"], "color(var(--foreground) alpha(0.6))") else: @@ -985,7 +987,8 @@ def format_completion( lsp_filter_text = item.get('filterText') or "" lsp_detail = (item.get('detail') or "").replace("\n", " ") - kind = COMPLETION_KINDS.get(item.get('kind', -1), sublime.KIND_AMBIGUOUS) + completion_kind = item.get('kind') + kind = COMPLETION_KINDS.get(completion_kind, sublime.KIND_AMBIGUOUS) if completion_kind else sublime.KIND_AMBIGUOUS details = [] # type: List[str] if can_resolve_completion_items or item.get('documentation'): @@ -1033,8 +1036,9 @@ def format_code_actions_for_quick_panel( items = [] # type: List[sublime.QuickPanelItem] selected_index = -1 for idx, code_action in enumerate(code_actions): - lsp_kind = str(code_action.get("kind", "")) - kind = CODE_ACTION_KINDS.get(lsp_kind.split(".")[0], sublime.KIND_AMBIGUOUS) + lsp_kind = code_action.get("kind", "") + first_kind_component = cast(CodeActionKind, str(lsp_kind).split(".")[0]) + kind = CODE_ACTION_KINDS.get(first_kind_component, sublime.KIND_AMBIGUOUS) items.append(sublime.QuickPanelItem(code_action["title"], kind=kind)) if code_action.get('isPreferred', False): selected_index = idx diff --git a/plugin/core/workspace.py b/plugin/core/workspace.py index a32f3d58b..1916d4867 100644 --- a/plugin/core/workspace.py +++ b/plugin/core/workspace.py @@ -1,6 +1,6 @@ -from .protocol import WorkspaceFolder from .types import diff -from .typing import List, Union +from .typing import Any, Dict, List, Union +from .url import filename_to_uri import sublime import os @@ -14,6 +14,42 @@ def is_subpath_of(file_path: str, potential_subpath: str) -> bool: return False +class WorkspaceFolder: + + __slots__ = ('name', 'path') + + def __init__(self, name: str, path: str) -> None: + self.name = name + self.path = path + + @classmethod + def from_path(cls, path: str) -> 'WorkspaceFolder': + return cls(os.path.basename(path) or path, path) + + def __hash__(self) -> int: + return hash((self.name, self.path)) + + def __repr__(self) -> str: + return "{}('{}', '{}')".format(self.__class__.__name__, self.name, self.path) + + def __str__(self) -> str: + return self.path + + def __eq__(self, other: Any) -> bool: + if isinstance(other, WorkspaceFolder): + return self.name == other.name and self.path == other.path + return False + + def to_lsp(self) -> Dict[str, str]: + return {"name": self.name, "uri": self.uri()} + + def uri(self) -> str: + return filename_to_uri(self.path) + + def includes_uri(self, uri: str) -> bool: + return uri.startswith(self.uri()) + + class ProjectFolders(object): def __init__(self, window: sublime.Window) -> None: diff --git a/plugin/document_link.py b/plugin/document_link.py index e2a665250..f0c3b6e3a 100644 --- a/plugin/document_link.py +++ b/plugin/document_link.py @@ -50,7 +50,9 @@ def run(self, edit: sublime.Edit, event: Optional[dict] = None) -> None: session.send_request_async(Request.resolveDocumentLink(link, self.view), self._on_resolved_async) def _on_resolved_async(self, response: DocumentLink) -> None: - self.open_target(response["target"]) + target = response.get("target") + if target is not None: + self.open_target(target) def open_target(self, target: str) -> None: if target.startswith("file:"): diff --git a/plugin/documents.py b/plugin/documents.py index bb68d8484..fb1bd8dea 100644 --- a/plugin/documents.py +++ b/plugin/documents.py @@ -11,6 +11,7 @@ from .core.protocol import CompletionList from .core.protocol import Diagnostic from .core.protocol import DiagnosticSeverity +from .core.protocol import DocumentHighlight from .core.protocol import DocumentHighlightKind from .core.protocol import Error from .core.protocol import Request @@ -495,13 +496,13 @@ def do_signature_help_async(self, manual: bool) -> None: if manual or last_char in triggers: self.purge_changes_async() position_params = text_document_position_params(self.view, pos) - context_params = {} # type: SignatureHelpContext - if manual: - context_params["triggerKind"] = SignatureHelpTriggerKind.Invoked - else: - context_params["triggerKind"] = SignatureHelpTriggerKind.TriggerCharacter + trigger_kind = SignatureHelpTriggerKind.Invoked if manual else SignatureHelpTriggerKind.TriggerCharacter + context_params = { + 'triggerKind': trigger_kind, + 'isRetrigger': self._sighelp is not None, + } # type: SignatureHelpContext + if not manual: context_params["triggerCharacter"] = last_char - context_params["isRetrigger"] = self._sighelp is not None if self._sighelp: context_params["activeSignatureHelp"] = self._sighelp.active_signature_help() params = { @@ -657,16 +658,16 @@ def _resolve_visible_code_lenses_async(self) -> None: # --- textDocument/documentHighlight ------------------------------------------------------------------------------- - def _highlights_key(self, kind: int, multiline: bool) -> str: + def _highlights_key(self, kind: DocumentHighlightKind, multiline: bool) -> str: return "lsp_highlight_{}{}".format(DOCUMENT_HIGHLIGHT_KINDS[kind], "m" if multiline else "s") def _clear_highlight_regions(self) -> None: - for kind in range(1, 4): + for kind in [DocumentHighlightKind.Text, DocumentHighlightKind.Read, DocumentHighlightKind.Write]: self.view.erase_regions(self._highlights_key(kind, False)) self.view.erase_regions(self._highlights_key(kind, True)) def _is_in_higlighted_region(self, point: int) -> bool: - for kind in range(1, 4): + for kind in [DocumentHighlightKind.Text, DocumentHighlightKind.Read, DocumentHighlightKind.Write]: regions = itertools.chain( self.view.get_regions(self._highlights_key(kind, False)), self.view.get_regions(self._highlights_key(kind, True)) @@ -686,10 +687,10 @@ def _do_highlights_async(self) -> None: request = Request.documentHighlight(params, self.view) session.send_request_async(request, self._on_highlights) - def _on_highlights(self, response: Optional[List]) -> None: + def _on_highlights(self, response: Optional[List[DocumentHighlight]]) -> None: if not isinstance(response, list): response = [] - kind2regions = {} # type: Dict[Tuple[int, bool], List[sublime.Region]] + kind2regions = {} # type: Dict[Tuple[DocumentHighlightKind, bool], List[sublime.Region]] for highlight in response: r = range_to_region(highlight["range"], self.view) kind = highlight.get("kind", DocumentHighlightKind.Text) diff --git a/plugin/goto_diagnostic.py b/plugin/goto_diagnostic.py index be61f4a63..b5d7ef182 100644 --- a/plugin/goto_diagnostic.py +++ b/plugin/goto_diagnostic.py @@ -85,7 +85,7 @@ def name(self) -> str: def list_items(self) -> Tuple[List[sublime.ListInputItem], int]: max_severity = userprefs().diagnostics_panel_include_severity_level # collect severities and location of first diagnostic per uri - severities_per_path = OrderedDict() # type: OrderedDict[ParsedUri, List[int]] + severities_per_path = OrderedDict() # type: OrderedDict[ParsedUri, List[DiagnosticSeverity]] self.first_locations = dict() # type: Dict[ParsedUri, Tuple[Session, Location]] for session in get_sessions(self.window): for parsed_uri, severity in session.diagnostics_manager.filter_map_diagnostics_flat_async( @@ -225,7 +225,10 @@ def _get_location(self, diagnostic: Diagnostic) -> Location: def diagnostic_location(parsed_uri: ParsedUri, diagnostic: Diagnostic) -> Location: - return dict(uri=unparse_uri(parsed_uri), range=diagnostic["range"]) + return { + 'uri': unparse_uri(parsed_uri), + 'range': diagnostic["range"] + } def open_location(session: Session, location: Location, flags: int = 0, group: int = -1) -> sublime.View: diff --git a/plugin/inlay_hint.py b/plugin/inlay_hint.py index 0efd0c6b5..8dc29c742 100644 --- a/plugin/inlay_hint.py +++ b/plugin/inlay_hint.py @@ -51,7 +51,7 @@ def handle_label_part_command(self, session_name: str, label_part: Optional[Inla args = { "session_name": session_name, "command_name": command["command"], - "command_args": command["arguments"] + "command_args": command.get("arguments") } self.view.run_command("lsp_execute", args) @@ -136,7 +136,7 @@ def format_inlay_hint_label(inlay_hint: InlayHint, session: Session, phantom_uui 'label_part': label_part }) value += ''.format(command=inlay_hint_click_command) - value += html.escape(label_part.get('value') or "") + value += html.escape(label_part['value']) if is_clickable: value += "" # InlayHintLabelPart.location is not supported diff --git a/plugin/session_buffer.py b/plugin/session_buffer.py index 721d191f1..84f88057e 100644 --- a/plugin/session_buffer.py +++ b/plugin/session_buffer.py @@ -4,11 +4,10 @@ from .core.protocol import DiagnosticSeverity from .core.protocol import DocumentLink from .core.protocol import DocumentUri +from .core.protocol import InlayHint from .core.protocol import InlayHintParams -from .core.protocol import InlayHintResponse from .core.protocol import Request -from .core.protocol import TextDocumentSyncKindFull -from .core.protocol import TextDocumentSyncKindNone +from .core.protocol import TextDocumentSyncKind from .core.sessions import Session from .core.sessions import SessionViewProtocol from .core.settings import userprefs @@ -16,7 +15,7 @@ from .core.types import debounced from .core.types import Debouncer from .core.types import FEATURES_TIMEOUT -from .core.typing import Any, Callable, Iterable, Optional, List, Set, Dict, Tuple +from .core.typing import Any, Callable, Iterable, Optional, List, Set, Dict, Tuple, Union from .core.views import DIAGNOSTIC_SEVERITY from .core.views import diagnostic_severity from .core.views import did_change @@ -239,9 +238,9 @@ def has_capability(self, capability: str) -> bool: value = self.get_capability(capability) return value is not False and value is not None - def text_sync_kind(self) -> int: + def text_sync_kind(self) -> TextDocumentSyncKind: value = self.capabilities.text_sync_kind() - return value if value > TextDocumentSyncKindNone else self.session.text_sync_kind() + return value if value != TextDocumentSyncKind.None_ else self.session.text_sync_kind() def should_notify_did_open(self) -> bool: return self.capabilities.should_notify_did_open() or self.session.should_notify_did_open() @@ -286,9 +285,9 @@ def on_revert_async(self, view: sublime.View) -> None: def purge_changes_async(self, view: sublime.View) -> None: if self.pending_changes is not None: sync_kind = self.text_sync_kind() - if sync_kind == TextDocumentSyncKindNone: + if sync_kind == TextDocumentSyncKind.None_: return - if sync_kind == TextDocumentSyncKindFull: + if sync_kind == TextDocumentSyncKind.Full: changes = None version = view.change_count() else: @@ -651,7 +650,7 @@ def do_inlay_hints_async(self, view: sublime.View) -> None: } # type: InlayHintParams self.session.send_request_async(Request.inlayHint(params, view), self._on_inlay_hints_async) - def _on_inlay_hints_async(self, response: InlayHintResponse) -> None: + def _on_inlay_hints_async(self, response: Union[List[InlayHint], None]) -> None: if response: view = self.some_view() if not view: diff --git a/plugin/session_view.py b/plugin/session_view.py index 7923ba992..b67a4a6a7 100644 --- a/plugin/session_view.py +++ b/plugin/session_view.py @@ -2,6 +2,7 @@ from .core.progress import ViewProgressReporter from .core.promise import Promise from .core.protocol import CodeLens +from .core.protocol import CodeLensExtended from .core.protocol import DiagnosticTag from .core.protocol import DocumentUri from .core.protocol import Notification @@ -386,7 +387,7 @@ def _on_code_lenses_resolved_async(self, mode: str) -> None: def set_code_lenses_pending_refresh(self, needs_refresh: bool = True) -> None: self.code_lenses_needs_refresh = needs_refresh - def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLens, None, None]: + def get_resolved_code_lenses_for_region(self, region: sublime.Region) -> Generator[CodeLensExtended, None, None]: yield from self._code_lenses.get_resolved_code_lenses_for_region(region) def __str__(self) -> str: diff --git a/plugin/symbols.py b/plugin/symbols.py index 95effebaa..15b4e82be 100644 --- a/plugin/symbols.py +++ b/plugin/symbols.py @@ -1,9 +1,10 @@ import weakref -from .core.protocol import Request, DocumentSymbol, SymbolInformation, SymbolTag +from .core.protocol import Request, DocumentSymbol, SymbolInformation, SymbolKind, SymbolTag from .core.registry import LspTextCommand from .core.sessions import print_to_status_bar from .core.typing import Any, List, Optional, Tuple, Dict, Generator, Union, cast from .core.views import range_to_region +from .core.views import SublimeKind from .core.views import SYMBOL_KIND_SCOPES from .core.views import SYMBOL_KINDS from .core.views import text_document_identifier @@ -16,15 +17,15 @@ SUPPRESS_INPUT_SETTING_KEY = 'lsp_suppress_input' -def unpack_lsp_kind(kind: int) -> Tuple[int, str, str]: +def unpack_lsp_kind(kind: SymbolKind) -> SublimeKind: return SYMBOL_KINDS.get(kind, sublime.KIND_AMBIGUOUS) -def format_symbol_kind(kind: int) -> str: +def format_symbol_kind(kind: SymbolKind) -> str: return SYMBOL_KINDS.get(kind, (None, None, str(kind)))[2] -def get_symbol_scope_from_lsp_kind(kind: int) -> str: +def get_symbol_scope_from_lsp_kind(kind: SymbolKind) -> str: return SYMBOL_KIND_SCOPES.get(kind, "comment") @@ -168,8 +169,8 @@ def process_symbols( # Sort both lists in sync according to the range's begin point. sorted_results = zip(*sorted(zip(self.regions, panel_items), key=lambda item: item[0][0].begin())) sorted_regions, sorted_panel_items = sorted_results - self.regions = list(sorted_regions) - return list(sorted_panel_items) + self.regions = list(sorted_regions) # type: ignore + return list(sorted_panel_items) # type: ignore def process_document_symbols(self, items: List[DocumentSymbol]) -> List[sublime.QuickPanelItem]: quick_panel_items = [] # type: List[sublime.QuickPanelItem] diff --git a/plugin/tooling.py b/plugin/tooling.py index 7db306506..3afdd7238 100644 --- a/plugin/tooling.py +++ b/plugin/tooling.py @@ -287,7 +287,7 @@ def run(self, base_package_name: str) -> None: view.set_read_only(True) -class LspTroubleshootServerCommand(sublime_plugin.WindowCommand, TransportCallbacks): +class LspTroubleshootServerCommand(sublime_plugin.WindowCommand): def run(self) -> None: window = self.window diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 000000000..60223bf1d --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,4 @@ +{ + "stubPath": "./stubs", + "reportMissingModuleSource": "none", +} diff --git a/tests/test_file_watcher.py b/tests/test_file_watcher.py index eb7c23b70..b3281e3ee 100644 --- a/tests/test_file_watcher.py +++ b/tests/test_file_watcher.py @@ -4,7 +4,7 @@ from LSP.plugin import FileWatcherProtocol from LSP.plugin.core.file_watcher import file_watcher_event_type_to_lsp_file_change_type from LSP.plugin.core.file_watcher import register_file_watcher_implementation -from LSP.plugin.core.protocol import WatchKindChange, WatchKindCreate, WatchKindDelete +from LSP.plugin.core.protocol import WatchKind from LSP.plugin.core.types import ClientConfig from LSP.plugin.core.types import sublime_pattern_to_glob from LSP.plugin.core.typing import Generator, List, Optional @@ -102,7 +102,7 @@ def tearDown(self) -> Generator: self.assertEqual(len(TestFileWatcher._active_watchers), 0) # Restore original project data. window = sublime.active_window() - window.set_project_data(None) + window.set_project_data({}) class FileWatcherStaticTests(FileWatcherDocumentTestCase): @@ -156,7 +156,7 @@ def test_handles_dynamic_watcher_registration(self) -> Generator: 'watchers': [ { 'globPattern': '*.py', - 'kind': WatchKindCreate | WatchKindChange | WatchKindDelete, + 'kind': WatchKind.Create | WatchKind.Change | WatchKind.Delete, } ] } diff --git a/tests/test_server_requests.py b/tests/test_server_requests.py index 9dfbfc6db..221bceea2 100644 --- a/tests/test_server_requests.py +++ b/tests/test_server_requests.py @@ -1,6 +1,5 @@ -from LSP.plugin.core.protocol import ErrorCode -from LSP.plugin.core.protocol import TextDocumentSyncKindFull -from LSP.plugin.core.protocol import TextDocumentSyncKindIncremental +from LSP.plugin.core.protocol import ErrorCodes +from LSP.plugin.core.protocol import TextDocumentSyncKind from LSP.plugin.core.sessions import SessionBufferProtocol from LSP.plugin.core.types import ClientConfig from LSP.plugin.core.typing import Any, Dict, Generator, Optional, List @@ -29,7 +28,7 @@ def verify(testcase: TextDocumentTestCase, method: str, input_params: Any, expec class ServerRequests(TextDocumentTestCase): def test_unknown_method(self) -> Generator: - yield from verify(self, "foobar/qux", {}, {"code": ErrorCode.MethodNotFound, "message": "foobar/qux"}) + yield from verify(self, "foobar/qux", {}, {"code": ErrorCodes.MethodNotFound, "message": "foobar/qux"}) def test_m_workspace_workspaceFolders(self) -> Generator: expected_output = [{"name": os.path.basename(f), "uri": filename_to_uri(f)} @@ -133,7 +132,7 @@ def test_m_client_registerCapability(self) -> Generator: {"method": "textDocument/willSaveWaitUntil", "id": "2", "registerOptions": {"documentSelector": [{"language": "txt"}]}}, {"method": "textDocument/didChange", "id": "adsf", - "registerOptions": {"syncKind": TextDocumentSyncKindFull, "documentSelector": [ + "registerOptions": {"syncKind": TextDocumentSyncKind.Full, "documentSelector": [ {"language": "txt"} ]}}, {"method": "textDocument/completion", "id": "myCompletionRegistrationId", @@ -154,9 +153,9 @@ def test_m_client_registerCapability(self) -> Generator: # willSaveWaitUntil is *only* registered on the buffer self.assertFalse(self.session.capabilities.get("textDocumentSync.willSaveWaitUntil")) sb = next(self.session.session_buffers_async()) - self.assertEqual(sb.capabilities.text_sync_kind(), TextDocumentSyncKindFull) + self.assertEqual(sb.capabilities.text_sync_kind(), TextDocumentSyncKind.Full) self.assertEqual(sb.capabilities.get("textDocumentSync.willSaveWaitUntil"), {"id": "2"}) - self.assertEqual(self.session.capabilities.text_sync_kind(), TextDocumentSyncKindIncremental) + self.assertEqual(self.session.capabilities.text_sync_kind(), TextDocumentSyncKind.Incremental) # Check that textDocument/completion was registered onto the SessionBuffer, and check that the trigger # characters for each view were updated diff --git a/tests/test_session.py b/tests/test_session.py index e0ba8aa65..81a9cb518 100644 --- a/tests/test_session.py +++ b/tests/test_session.py @@ -2,16 +2,14 @@ from LSP.plugin.core.protocol import Diagnostic from LSP.plugin.core.protocol import DocumentUri from LSP.plugin.core.protocol import Error -from LSP.plugin.core.protocol import TextDocumentSyncKindFull -from LSP.plugin.core.protocol import TextDocumentSyncKindIncremental -from LSP.plugin.core.protocol import TextDocumentSyncKindNone -from LSP.plugin.core.protocol import WorkspaceFolder +from LSP.plugin.core.protocol import TextDocumentSyncKind from LSP.plugin.core.sessions import get_initialize_params from LSP.plugin.core.sessions import Logger from LSP.plugin.core.sessions import Manager from LSP.plugin.core.sessions import Session from LSP.plugin.core.types import ClientConfig from LSP.plugin.core.typing import Any, Optional, Generator, List, Dict +from LSP.plugin.core.workspace import WorkspaceFolder from test_mocks import TEST_CONFIG import sublime import unittest @@ -166,11 +164,11 @@ def test_document_sync_capabilities(self) -> None: session.capabilities.assign({ 'textDocumentSync': { "openClose": True, - "change": TextDocumentSyncKindFull, + "change": TextDocumentSyncKind.Full, "save": True}}) # A boolean with value true means "send didSave" self.assertTrue(session.should_notify_did_open()) self.assertTrue(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindFull) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.Full) self.assertFalse(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (True, False)) @@ -178,24 +176,24 @@ def test_document_sync_capabilities(self) -> None: 'textDocumentSync': { "didOpen": {}, "didClose": {}, - "change": TextDocumentSyncKindFull, + "change": TextDocumentSyncKind.Full, "save": True}}) # A boolean with value true means "send didSave" self.assertTrue(session.should_notify_did_open()) self.assertTrue(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindFull) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.Full) self.assertFalse(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (True, False)) session.capabilities.assign({ 'textDocumentSync': { "openClose": False, - "change": TextDocumentSyncKindNone, + "change": TextDocumentSyncKind.None_, "save": {}, # An empty dict means "send didSave" "willSave": True, "willSaveWaitUntil": False}}) self.assertFalse(session.should_notify_did_open()) self.assertFalse(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindNone) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.None_) self.assertTrue(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (True, False)) # Nested capabilities. @@ -208,28 +206,28 @@ def test_document_sync_capabilities(self) -> None: session.capabilities.assign({ 'textDocumentSync': { "openClose": False, - "change": TextDocumentSyncKindIncremental, + "change": TextDocumentSyncKind.Incremental, "save": {"includeText": True}, "willSave": False, "willSaveWaitUntil": True}}) self.assertFalse(session.should_notify_did_open()) self.assertFalse(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindIncremental) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.Incremental) self.assertFalse(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (True, True)) - session.capabilities.assign({'textDocumentSync': TextDocumentSyncKindIncremental}) + session.capabilities.assign({'textDocumentSync': TextDocumentSyncKind.Incremental}) self.assertTrue(session.should_notify_did_open()) self.assertTrue(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindIncremental) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.Incremental) self.assertFalse(session.should_notify_will_save()) # old-style text sync will never send willSave # old-style text sync will always send didSave self.assertEqual(session.should_notify_did_save(), (True, False)) - session.capabilities.assign({'textDocumentSync': TextDocumentSyncKindNone}) + session.capabilities.assign({'textDocumentSync': TextDocumentSyncKind.None_}) self.assertTrue(session.should_notify_did_open()) # old-style text sync will always send didOpen self.assertTrue(session.should_notify_did_close()) # old-style text sync will always send didClose - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindNone) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.None_) self.assertFalse(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (True, False)) @@ -237,10 +235,10 @@ def test_document_sync_capabilities(self) -> None: 'textDocumentSync': { "openClose": True, "save": False, - "change": TextDocumentSyncKindIncremental}}) + "change": TextDocumentSyncKind.Incremental}}) self.assertTrue(session.should_notify_did_open()) self.assertTrue(session.should_notify_did_close()) - self.assertEqual(session.text_sync_kind(), TextDocumentSyncKindIncremental) + self.assertEqual(session.text_sync_kind(), TextDocumentSyncKind.Incremental) self.assertFalse(session.should_notify_will_save()) self.assertEqual(session.should_notify_did_save(), (False, False)) diff --git a/tests/test_workspace.py b/tests/test_workspace.py index 903c1f22e..3d73191b7 100644 --- a/tests/test_workspace.py +++ b/tests/test_workspace.py @@ -1,5 +1,4 @@ -from LSP.plugin.core.workspace import sorted_workspace_folders, is_subpath_of -from LSP.plugin.core.protocol import WorkspaceFolder +from LSP.plugin.core.workspace import sorted_workspace_folders, is_subpath_of, WorkspaceFolder import os import unittest import tempfile diff --git a/tox.ini b/tox.ini index 0c7991ad2..2b65ca14d 100644 --- a/tox.ini +++ b/tox.ini @@ -14,11 +14,17 @@ max-line-length = 120 [flake8] exclude = third_party max-line-length = 120 +per-file-ignores = + # line-length + plugin/core/protocol.py:E501 [testenv] deps = - flake8==3.9.2 - mypy==0.910 + ; mypy==0.971 + flake8==5.0.4 + pyright==1.1.271 commands = - mypy plugin + # mypy disabled as it doesn't currently support cyclic definitions - https://github.com/python/mypy/issues/731 + ; mypy plugin flake8 plugin tests + pyright plugin