From aede23c46ad8d9d573044a349b4a34bb8c3768fb Mon Sep 17 00:00:00 2001 From: Juho Teperi Date: Sat, 16 May 2015 23:01:23 +0300 Subject: [PATCH] Add all candidate types to short_types map --- plugin/fireplace.vim | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugin/fireplace.vim b/plugin/fireplace.vim index 1643505..be6650c 100644 --- a/plugin/fireplace.vim +++ b/plugin/fireplace.vim @@ -86,7 +86,15 @@ let s:short_types = { \ 'macro': 'm', \ 'var': 'v', \ 'special-form': 's', - \ 'class': 'c' + \ 'class': 'c', + \ 'keyword': 'k', + \ 'local': 'l', + \ 'namespace': 'n', + \ 'field': 'i', + \ 'method': 'f', + \ 'static-field': 'i', + \ 'static-method': 'f', + \ 'resource': 'r' \ } function! s:candidate(val) abort