Sha256: aedbb19b2953d7f76181196332f47bf5b19e8e1f665e10dfa1a587fdd733129c
Contents?: true
Size: 771 Bytes
Versions: 114
Compression:
Stored size: 771 Bytes
Contents
module LanguageServer module Protocol module Constant # # Defines whether the insert text in a completion item should be interpreted as # plain text or a snippet. # module InsertTextFormat # # The primary text to be inserted is treated as a plain string. # PLAIN_TEXT = 1 # # The primary text to be inserted is treated as a snippet. # # 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. # SNIPPET = 2 end end end end
Version data entries
114 entries across 114 versions & 12 rubygems