- Fixed for alias.

This commit is contained in:
Shougo Matsushita 2012-10-30 05:18:59 +09:00
parent ff281e5171
commit be5b8e37cd
2 changed files with 2 additions and 1 deletions

View File

@ -182,7 +182,7 @@ function! s:set_snippet_dict(snippet_dict, snippets, dup_check, snippets_file)"{
let alias_snippet = copy(snippet) let alias_snippet = copy(snippet)
let alias_snippet.word = alias let alias_snippet.word = alias
let a:snippet_dict[alias] = alias_snippet let a:snippets[alias] = alias_snippet
let a:dup_check[alias] = alias_snippet let a:dup_check[alias] = alias_snippet
endfor endfor
endfunction"}}} endfunction"}}}

View File

@ -467,6 +467,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-30 2012-10-30
- Implemented commented placeholder. - Implemented commented placeholder.
- Improved python snippets. - Improved python snippets.
- Fixed for alias.
2012-10-29 2012-10-29
- Improved parse of snippets file. - Improved parse of snippets file.