Sha256: 2ef5fe070c5884210fa033b8a3cd85b3af03fceff36422e15dd603d58e05c9be
Contents?: true
Size: 713 Bytes
Versions: 8
Compression:
Stored size: 713 Bytes
Contents
module LanguageServer module Protocol module Constant # # How a completion was triggered # module CompletionTriggerKind # # Completion was triggered by typing an identifier (24x7 code # complete), manual invocation (e.g Ctrl+Space) or via API. # INVOKED = 1 # # Completion was triggered by a trigger character specified by # the `triggerCharacters` properties of the `CompletionRegistrationOptions`. # TRIGGER_CHARACTER = 2 # # Completion was re-triggered as the current completion list is incomplete. # TRIGGER_FOR_INCOMPLETE_COMPLETIONS = 3 end end end end
Version data entries
8 entries across 8 versions & 1 rubygems