class

LSProtocol::CompletionItemDefaults

Inherits JSON::Serializable / Reference / Object

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 rules for combining these are defined by applyKinds (if the client supports it), defaulting to ApplyKind.Replace.

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

@since 3.17.0

Constructors

new(pull : JSON::PullParser)
Source
new(commit_characters : Array(String) | Nil = nil, data : LSPAny | Nil = nil, edit_range : EditRangeWithInsertReplace | Range | Nil = nil, insert_text_format : InsertTextFormat | Nil = nil, insert_text_mode : InsertTextMode | Nil = nil)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

commit_characters

A default commit character set.

@since 3.17.0

Source
data

A default data value.

@since 3.17.0

Source
edit_range

A default edit range.

@since 3.17.0

Source
insert_text_format

A default insert text format.

@since 3.17.0

Source
insert_text_mode

A default insert text mode.

@since 3.17.0

Source