Created
May 20, 2021 05:41
-
-
Save dhruvmanila/1baa68c0cf985a112391c6deaedb72da to your computer and use it in GitHub Desktop.
LSP completion kind symbols from VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lsp_kind = { | |
Text = "", | |
Method = "", | |
Function = "", | |
Constructor = "", | |
Field = "", | |
Variable = "", | |
Class = "", | |
Interface = "", | |
Module = "", | |
Property = "", | |
Unit = "", | |
Value = "", | |
Enum = "", | |
Keyword = "", | |
Snippet = "", | |
Color = "", | |
File = "", | |
Reference = "", | |
Folder = "", | |
EnumMember = "", | |
Constant = "", | |
Struct = "", | |
Event = "", | |
Operator = "", | |
TypeParameter = "", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment