From 17ab5b07f021cb4e00a89c41dffb0afb781a0227 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 9 Nov 2012 12:39:41 +0900 Subject: [PATCH] - Improved convert description behavior. --- autoload/neosnippet.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/neosnippet.vim b/autoload/neosnippet.vim index b350f78..fed90b7 100644 --- a/autoload/neosnippet.vim +++ b/autoload/neosnippet.vim @@ -410,10 +410,10 @@ function! s:parse_snippet_name(snippets_file, line, linenr, dup_check)"{{{ " Fall back to using the name and description (abbr) combined. " SnipMate snippets may have duplicate names, but different " descriptions (abbrs). - let description = matchstr(a:line, '^snippet\s\+\zs.*$') + let description = matchstr(a:line, '^snippet\s\+\S\+\zs.*$') if description !=# snippet_dict.name " Convert description. - let snippet_dict.name = + let snippet_dict.name .= '_' . \ substitute(description, '\W\+', '_', 'g') endif