struct LSP::CompletionClientCapabilities::CompletionItem
- LSP::CompletionClientCapabilities::CompletionItem
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
lsp/protocol/completion_client_capabilities.crConstructors
Instance Method Summary
-
#snippet_support : Bool | Nil
Client supports snippets as insert text.
-
#snippet_support=(snippet_support : Bool | Nil)
Client supports snippets as insert text.
Constructor Detail
Instance Method Detail
def snippet_support : Bool | Nil
#
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.
def snippet_support=(snippet_support : Bool | Nil)
#
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.