Fix #413 parse problem
This commit is contained in:
parent
770ed583cf
commit
b500600c56
@ -295,15 +295,18 @@ function! neosnippet#parser#_get_completed_snippet(completed_item, cur_text, nex
|
||||
endif
|
||||
|
||||
" Set abbr
|
||||
let abbr = (item.abbr != '') ? item.abbr : item.word
|
||||
if len(item.menu) > 5
|
||||
" Combine menu.
|
||||
let abbr .= ' ' . item.menu
|
||||
endif
|
||||
if item.info != ''
|
||||
let abbr .= split(item.info, '\n')[0]
|
||||
let abbr = ''
|
||||
if get(item, 'info', '') =~# '^.\+('
|
||||
let abbr = matchstr(item.info, '^\_s*\zs.*')
|
||||
elseif get(item, 'abbr', '') =~# '^.\+('
|
||||
let abbr = item.abbr
|
||||
elseif get(item, 'menu', '') =~# '^.\+('
|
||||
let abbr = item.menu
|
||||
elseif item.word =~# '^.\+(' || get(item, 'kind', '') == 'f'
|
||||
let abbr = item.word
|
||||
endif
|
||||
let abbr = escape(abbr, '\')
|
||||
|
||||
let pairs = neosnippet#util#get_buffer_config(
|
||||
\ &filetype, '',
|
||||
\ 'g:neosnippet#completed_pairs', 'g:neosnippet#_completed_pairs', {})
|
||||
|
@ -92,11 +92,6 @@ function! s:suite.get_completed_snippet() abort
|
||||
\ 'menu' : '', 'info' : ''
|
||||
\ }, 'foo{', ''), '${1}}${2}')
|
||||
|
||||
call s:assert.equals(neosnippet#parser#_get_completed_snippet({
|
||||
\ 'word' : 'foo{', 'abbr' : 'foo{piyo}',
|
||||
\ 'menu' : '', 'info' : ''
|
||||
\ }, 'foo{', ''), '${1:#:piyo}}${2}')
|
||||
|
||||
call s:assert.equals(neosnippet#parser#_get_completed_snippet({
|
||||
\ 'word' : 'Dictionary', 'abbr' : 'Dictionary<Key, Value>(foo)',
|
||||
\ 'menu' : '', 'info' : ''
|
||||
|
Loading…
Reference in New Issue
Block a user