Sha256: 82f95ea148e906b6243810de10460de4a7c0e264daaf76d5a87c4c13a0ab9d89

Contents?: true

Size: 534 Bytes

Versions: 3

Compression:

Stored size: 534 Bytes

Contents

module LanguageServer
  module Protocol
    module Constant
      #
      # The kind of a completion entry.
      #
      module CompletionItemKind
        TEXT = 1
        METHOD = 2
        FUNCTION = 3
        CONSTRUCTOR = 4
        FIELD = 5
        VARIABLE = 6
        CLASS = 7
        INTERFACE = 8
        MODULE = 9
        PROPERTY = 10
        UNIT = 11
        VALUE = 12
        ENUM = 13
        KEYWORD = 14
        SNIPPET = 15
        COLOR = 16
        FILE = 17
        REFERENCE = 18
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
language_server-protocol-0.5.0 lib/language_server/protocol/constant/completion_item_kind.rb
language_server-protocol-0.4.0 lib/language_server/protocol/constant/completion_item_kind.rb
language_server-protocol-0.3.0 lib/language_server/protocol/constant/completion_item_kind.rb