struct LSP::Data::CompletionItem
- LSP::Data::CompletionItem
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
lsp/data/completion_item.crConstructors
- .new(pull : JSON::PullParser)
- .new(label : String = "", kind : LSP::Data::CompletionItemKind | Nil = nil, detail : Nil | String = nil, documentation : LSP::Data::MarkupContent | String | Nil = nil, deprecated : Bool | Nil = false, preselect : Bool | Nil = false, sort_text : Nil | String = nil, filter_text : Nil | String = nil, insert_text_format : LSP::Data::InsertTextFormat | Nil = nil, text_edit : LSP::Data::TextEdit | Nil = nil, additional_text_edits : Array(LSP::Data::TextEdit) = [] of TextEdit, commit_characters : Nil | Array(String) = [] of String, command : LSP::Data::Command | Nil = nil, data : JSON::Any | Nil = nil)
Instance Method Summary
- #_insert_text : String | Nil
- #_insert_text=(_insert_text : String | Nil)
- #additional_text_edits : Array(TextEdit)
- #additional_text_edits=(additional_text_edits : Array(TextEdit))
-
#command : Command | Nil
An optional command that is executed after inserting this completion.
-
#command=(command : Command | Nil)
An optional command that is executed after inserting this completion.
- #commit_characters : Array(String) | Nil
- #commit_characters=(commit_characters : Array(String) | Nil)
-
#data : JSON::Any | Nil
An data entry field that is preserved on a completion item between a completion and a completion resolve request.
-
#data=(data : JSON::Any | Nil)
An data entry field that is preserved on a completion item between a completion and a completion resolve request.
-
#deprecated : Bool | Nil
Indicates if this item is deprecated.
-
#deprecated=(deprecated : Bool | Nil)
Indicates if this item is deprecated.
-
#detail : String | Nil
A human-readable string with additional information about this item, like type or symbol information.
-
#detail=(detail : String | Nil)
A human-readable string with additional information about this item, like type or symbol information.
-
#documentation : String | MarkupContent | Nil
A human-readable string that represents a doc-comment.
-
#documentation=(documentation : String | MarkupContent | Nil)
A human-readable string that represents a doc-comment.
- #filter_text : String | Nil
- #filter_text=(filter_text : String | Nil)
- #insert_text_format : InsertTextFormat | Nil
- #insert_text_format=(insert_text_format : InsertTextFormat | Nil)
- #kind : CompletionItemKind | Nil
- #kind=(kind : CompletionItemKind | Nil)
-
#label : String
The label of this completion item.
-
#label=(label : String)
The label of this completion item.
-
#preselect : Bool | Nil
Select this item when showing.
-
#preselect=(preselect : Bool | Nil)
Select this item when showing.
- #sort_text : String | Nil
- #sort_text=(sort_text : String | Nil)
- #text_edit : TextEdit | Nil
- #text_edit=(text_edit : TextEdit | Nil)
Constructor Detail
Instance Method Detail
An optional command that is executed after inserting this completion. Note that additional modifications to the current document should be described with the additionalTextEdits-property.
An optional command that is executed after inserting this completion. Note that additional modifications to the current document should be described with the additionalTextEdits-property.
An data entry field that is preserved on a completion item between a completion and a completion resolve request.
An data entry field that is preserved on a completion item between a completion and a completion resolve request.
A human-readable string with additional information about this item, like type or symbol information.
A human-readable string with additional information about this item, like type or symbol information.
A human-readable string that represents a doc-comment.
A human-readable string that represents a doc-comment.
The label of this completion item. By default also the text that is inserted when selecting this completion.
The label of this completion item. By default also the text that is inserted when selecting this completion.
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.
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.