From f9c32e36cdc5289c86bb33a1f1ecbe8fc388d4e8 Mon Sep 17 00:00:00 2001 From: Prabir Shrestha Date: Mon, 6 Aug 2018 00:14:42 -0700 Subject: [PATCH] add additional kind mappings (#164) --- autoload/lsp/omni.vim | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/autoload/lsp/omni.vim b/autoload/lsp/omni.vim index 77dc8753..97d893b5 100644 --- a/autoload/lsp/omni.vim +++ b/autoload/lsp/omni.vim @@ -19,6 +19,13 @@ let s:kind_text_mappings = { \ '16': 'color', \ '17': 'file', \ '18': 'reference', + \ '19': 'folder', + \ '21': 'enum member', + \ '22': 'constant', + \ '23': 'struct', + \ '24': 'event', + \ '25': 'operator', + \ '26': 'type parameter', \ } let s:completion_status_success = 'success'