Browse Source

Fix #413 parse problem

PR/fix-warning
Shougo Matsushita 6 years ago
parent
commit
b500600c56
2 changed files with 10 additions and 12 deletions
  1. +10
    -7
      autoload/neosnippet/parser.vim
  2. +0
    -5
      test/functions.vim

+ 10
- 7
autoload/neosnippet/parser.vim View File

@@ -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', {})


+ 0
- 5
test/functions.vim View File

@@ -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…
Cancel
Save