- Improved keyword filter behavior.
This commit is contained in:
parent
5ccca08ff8
commit
ef5b97466e
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: snippets_complete.vim
|
" FILE: snippets_complete.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 09 Nov 2012.
|
" Last Modified: 10 Nov 2012.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"=============================================================================
|
"=============================================================================
|
||||||
" FILE: neosnippet.vim
|
" FILE: neosnippet.vim
|
||||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||||
" Last Modified: 09 Nov 2012.
|
" Last Modified: 10 Nov 2012.
|
||||||
" License: MIT license {{{
|
" License: MIT license {{{
|
||||||
" Permission is hereby granted, free of charge, to any person obtaining
|
" Permission is hereby granted, free of charge, to any person obtaining
|
||||||
" a copy of this software and associated documentation files (the
|
" a copy of this software and associated documentation files (the
|
||||||
@ -183,6 +183,7 @@ function! s:set_snippet_dict(snippet_dict, snippets, dup_check, snippets_file)"{
|
|||||||
for alias in get(a:snippet_dict, 'alias', [])
|
for alias in get(a:snippet_dict, 'alias', [])
|
||||||
let alias_snippet = copy(snippet)
|
let alias_snippet = copy(snippet)
|
||||||
let alias_snippet.word = alias
|
let alias_snippet.word = alias
|
||||||
|
let alias_snippet.filter_str = alias
|
||||||
|
|
||||||
let a:snippets[alias] = alias_snippet
|
let a:snippets[alias] = alias_snippet
|
||||||
let a:dup_check[alias] = alias_snippet
|
let a:dup_check[alias] = alias_snippet
|
||||||
|
@ -716,6 +716,7 @@ CHANGELOG *neosnippet-changelog*
|
|||||||
- Improved syntax error.
|
- Improved syntax error.
|
||||||
- Fixed error in java snippet.
|
- Fixed error in java snippet.
|
||||||
- Improved snippet rank.
|
- Improved snippet rank.
|
||||||
|
- Improved keyword filter behavior.
|
||||||
|
|
||||||
2012-11-07
|
2012-11-07
|
||||||
- Fixed s:indent_snippet().
|
- Fixed s:indent_snippet().
|
||||||
|
Loading…
Reference in New Issue
Block a user