Class: LanguageServer::Protocol::Interface::CompletionRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::CompletionRegistrationOptions
- Defined in:
- lib/language_server/protocol/interface/completion_registration_options.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#all_commit_characters ⇒ string[]
The list of all possible characters that commit a completion.
-
#completion_item ⇒ { labelDetailsSupport?: boolean; }
The server supports the following ‘CompletionItem` specific capabilities.
-
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration.
-
#initialize(document_selector:, work_done_progress: nil, trigger_characters: nil, all_commit_characters: nil, resolve_provider: nil, completion_item: nil) ⇒ CompletionRegistrationOptions
constructor
A new instance of CompletionRegistrationOptions.
-
#resolve_provider ⇒ boolean
The server provides support to resolve additional information for a completion item.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
-
#trigger_characters ⇒ string[]
The additional characters, beyond the defaults provided by the client (typically [a-zA-Z]), that should automatically trigger a completion request.
- #work_done_progress ⇒ boolean
Constructor Details
#initialize(document_selector:, work_done_progress: nil, trigger_characters: nil, all_commit_characters: nil, resolve_provider: nil, completion_item: nil) ⇒ CompletionRegistrationOptions
Returns a new instance of CompletionRegistrationOptions.
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 5 def initialize(document_selector:, work_done_progress: nil, trigger_characters: nil, all_commit_characters: nil, resolve_provider: nil, completion_item: nil) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes[:triggerCharacters] = trigger_characters if trigger_characters @attributes[:allCommitCharacters] = all_commit_characters if all_commit_characters @attributes[:resolveProvider] = resolve_provider if resolve_provider @attributes[:completionItem] = completion_item if completion_item @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
82 83 84 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 82 def attributes @attributes end |
Instance Method Details
#all_commit_characters ⇒ string[]
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 client capability ‘completion.completionItem.commitCharactersSupport`.
If a server provides both ‘allCommitCharacters` and commit characters on an individual completion item the ones on the completion item win.
60 61 62 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 60 def all_commit_characters attributes.fetch(:allCommitCharacters) end |
#completion_item ⇒ { labelDetailsSupport?: boolean; }
The server supports the following ‘CompletionItem` specific capabilities.
78 79 80 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 78 def completion_item attributes.fetch(:completionItem) end |
#document_selector ⇒ DocumentSelector
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.
23 24 25 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 23 def document_selector attributes.fetch(:documentSelector) end |
#resolve_provider ⇒ boolean
The server provides support to resolve additional information for a completion item.
69 70 71 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 69 def resolve_provider attributes.fetch(:resolveProvider) end |
#to_hash ⇒ Object
84 85 86 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 84 def to_hash attributes end |
#to_json(*args) ⇒ Object
88 89 90 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 88 def to_json(*args) to_hash.to_json(*args) end |
#trigger_characters ⇒ string[]
The additional characters, beyond the defaults provided by the client (typically [a-zA-Z]), that should automatically trigger a completion request. For example ‘.` in JavaScript represents the beginning of an object property or method and is thus a good candidate for triggering a completion request.
Most tools trigger a 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.
46 47 48 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 46 def trigger_characters attributes.fetch(:triggerCharacters) end |
#work_done_progress ⇒ boolean
28 29 30 |
# File 'lib/language_server/protocol/interface/completion_registration_options.rb', line 28 def work_done_progress attributes.fetch(:workDoneProgress) end |