Merge pull request #211 from Deraen/all-candidate-types

Add all candidate types to short_types map
This commit is contained in:
Tim Pope 2015-05-16 16:17:59 -04:00
commit 1646a01b0b
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