- Fixed filter_str.

This commit is contained in:
Shougo Matsushita 2012-11-03 19:25:17 +09:00
parent 1c05d0d9b1
commit b475e05455

View File

@ -214,7 +214,7 @@ function! s:initialize_snippet(dict, path, line, pattern, name)"{{{
let snippet = {
\ 'word' : a:dict.name, 'snip' : a:dict.word,
\ 'filter_str' : a:dict.abbr,
\ 'filter_str' : a:dict.name . ' ' . a:dict.abbr,
\ 'description' : a:dict.word,
\ 'menu' : menu_pattern . abbr,
\ 'options' : a:dict.options,