Add all candidate types to short_types map

This commit is contained in:
Juho Teperi 2015-05-16 23:01:23 +03:00
parent 819438bdf4
commit aede23c46a
1 changed files with 9 additions and 1 deletions

View File

@ -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