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
|
_G.PeekDefinition = peek_definition
|
||||||
|
|
||||||
protocol.CompletionItemKind = {
|
protocol.CompletionItemKind = {
|
||||||
' Text' ;
|
' Text' ;
|
||||||
' Method' ;
|
' Method' ;
|
||||||
' Function' ;
|
' Function' ;
|
||||||
'全Constructor' ;
|
' Constructor' ;
|
||||||
' Field' ;
|
' Field' ;
|
||||||
' Variable' ;
|
' Variable' ;
|
||||||
' Class' ;
|
' Class' ;
|
||||||
' Interface' ;
|
' Interface' ;
|
||||||
' Module' ;
|
' Module' ;
|
||||||
' Property' ;
|
' Property' ;
|
||||||
' Unit' ;
|
' Unit' ;
|
||||||
' Value' ;
|
' Value' ;
|
||||||
' Enum' ;
|
' Enum' ;
|
||||||
' Keyword' ;
|
' Keyword' ;
|
||||||
' Snippet' ;
|
' Snippet' ;
|
||||||
' Color' ;
|
' Color' ;
|
||||||
' File' ;
|
' File' ;
|
||||||
' Reference' ;
|
' Reference' ;
|
||||||
' Folder' ;
|
' Folder' ;
|
||||||
' EnumMember' ;
|
' EnumMember' ;
|
||||||
' Constant' ;
|
' Constant' ;
|
||||||
' Struct' ;
|
' Struct' ;
|
||||||
' Event' ;
|
' Event' ;
|
||||||
' Operator' ;
|
' Operator' ;
|
||||||
' TypeParameter';
|
' TypeParameter';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue