From 22bf9611263fcc9fd2c4bd61031053624ff82714 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 4 Nov 2016 21:32:59 +0900 Subject: [PATCH] Fix #358 completed snippet problem --- autoload/neosnippet/parser.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/neosnippet/parser.vim b/autoload/neosnippet/parser.vim index b49cb2d..7c1976d 100644 --- a/autoload/neosnippet/parser.vim +++ b/autoload/neosnippet/parser.vim @@ -312,7 +312,7 @@ function! neosnippet#parser#_get_completed_snippet(completed_item, next_text) ab let abbr .= ' ' . item.menu endif if item.info != '' - let abbr = split(item.info, '\n')[0] + let abbr .= split(item.info, '\n')[0] endif let pairs = neosnippet#util#get_buffer_config( \ &filetype, '',