nvim: lsp: Update completion kind symbols
This broke due to an update with the nerd-fonts package. See related https://www.reddit.com/r/archlinux/comments/1358gvh/switch_from_ttfnerdfontssymbols2048emmono_broke/ https://github.com/ryanoasis/nerd-fonts/issues/1190 Stole one or two icons from https://github.com/onsails/lspkind.nvim/pull/64 and the rest fixed by nerdfix. https://github.com/loichyan/nerdfix
This commit is contained in:
parent
eafc975e35
commit
3987cb202b
1 changed files with 14 additions and 14 deletions
|
@ -26,30 +26,30 @@ end
|
|||
_G.PeekDefinition = peek_definition
|
||||
|
||||
protocol.CompletionItemKind = {
|
||||
' Text' ;
|
||||
' Method' ;
|
||||
' Function' ;
|
||||
'全Constructor' ;
|
||||
' Text' ;
|
||||
' Method' ;
|
||||
' Function' ;
|
||||
' Constructor' ;
|
||||
' Field' ;
|
||||
' Variable' ;
|
||||
' Class' ;
|
||||
' Interface' ;
|
||||
' Module' ;
|
||||
' Module' ;
|
||||
' Property' ;
|
||||
' Unit' ;
|
||||
' Value' ;
|
||||
' Value' ;
|
||||
' Enum' ;
|
||||
' Keyword' ;
|
||||
' Snippet' ;
|
||||
' Color' ;
|
||||
' File' ;
|
||||
' Reference' ;
|
||||
' Keyword' ;
|
||||
' Snippet' ;
|
||||
' Color' ;
|
||||
' File' ;
|
||||
' Reference' ;
|
||||
' Folder' ;
|
||||
' EnumMember' ;
|
||||
' EnumMember' ;
|
||||
' Constant' ;
|
||||
' Struct' ;
|
||||
' Event' ;
|
||||
' Operator' ;
|
||||
' Event' ;
|
||||
' Operator' ;
|
||||
' TypeParameter';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue