- Added python snippets.

This commit is contained in:
Shougo Matsushita 2012-11-02 17:54:48 +09:00
parent f3eac08269
commit b51dc62ef0
2 changed files with 11 additions and 0 deletions

View File

@ -103,3 +103,13 @@ options head
while ${1:#:condition}:
${0:TARGET}
snippet with
abbr with open({file}) as :
options head
with open(${1:#:filename, mode}) as f
${0:TARGET}
snippet filter
abbr [x for x in {list} if {condition}]
[$1 for ${1:x} in ${2:#:list} if ${3:#:condition}]

View File

@ -660,6 +660,7 @@ CHANGELOG *neosnippet-changelog*
- Used partial match for neocomplcache completion.
- Fixed for neocomplcache.
- Improved partial match behavior.
- Added python snippets.
2012-11-01
- Fixed snippet mirror behavior.