- Fixed menu error.

This commit is contained in:
Shougo Matsushita 2013-03-10 11:24:19 +09:00
parent 938e614056
commit c5913090b4
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
"=============================================================================
" FILE: neosnippet.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 06 Mar 2013.
" Last Modified: 10 Mar 2013.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
@ -96,7 +96,7 @@ function! s:doc_dict.search(cur_text) "{{{
let ret = []
call add(ret, { 'text' : snip.word, 'highlight' : 'String' })
call add(ret, { 'text' : ' ' })
call add(ret, { 'text' : snip.menu, 'highlight' : 'Special' })
call add(ret, { 'text' : snip.menu_abbr, 'highlight' : 'Special' })
return ret
endfunction"}}}

View File

@ -741,6 +741,9 @@ Because neosnippet uses select-mode to jump over placeholder.
==============================================================================
CHANGELOG *neosnippet-changelog*
2013-03-10
- Fixed menu error.
2013-03-06
- Changed filtering behavior.