mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Merge branch 'main' of https://gitlab.gnome.org/jwestman/blueprint-compiler into formatter
This commit is contained in:
commit
4f5c1537dd
15 changed files with 76 additions and 33 deletions
|
@ -80,6 +80,7 @@ class Completion:
|
|||
kind: CompletionItemKind
|
||||
signature: T.Optional[str] = None
|
||||
deprecated: bool = False
|
||||
sort_text: T.Optional[str] = None
|
||||
docs: T.Optional[str] = None
|
||||
text: T.Optional[str] = None
|
||||
snippet: T.Optional[str] = None
|
||||
|
@ -103,6 +104,7 @@ class Completion:
|
|||
if self.docs
|
||||
else None,
|
||||
"deprecated": self.deprecated,
|
||||
"sortText": self.sort_text,
|
||||
"insertText": insert_text,
|
||||
"insertTextFormat": insert_text_format,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue