Sha256: 9899c72966111f31f449f50cd529026638f11c812a8bce5780ae73c7817ce7af
Contents?: true
Size: 607 Bytes
Versions: 114
Compression:
Stored size: 607 Bytes
Contents
module LanguageServer module Protocol module Constant # # Describes the content type that a client supports in various # result literals like `Hover`, `ParameterInfo` or `CompletionItem`. # # Please note that `MarkupKinds` must not start with a `$`. This kinds # are reserved for internal usage. # module MarkupKind # # Plain text is supported as a content format # PLAIN_TEXT = 'plaintext' # # Markdown is supported as a content format # MARKDOWN = 'markdown' end end end end
Version data entries
114 entries across 114 versions & 12 rubygems