File: completion_item_kind.rb

package info (click to toggle)
ruby-language-server-protocol 3.17.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,636 kB
  • sloc: ruby: 10,741; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
        FOLDER = 19
        ENUM_MEMBER = 20
        CONSTANT = 21
        STRUCT = 22
        EVENT = 23
        OPERATOR = 24
        TYPE_PARAMETER = 25
      end
    end
  end
end