- Fixed for :SnippetEdit.

This commit is contained in:
Shougo Matsushita 2012-10-27 12:20:00 +09:00
parent dcef469919
commit e9db76f71f
2 changed files with 5 additions and 2 deletions

View File

@ -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: 25 Oct 2012. " Last Modified: 27 Oct 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
@ -263,7 +263,7 @@ function! neosnippet#edit_snippets(args)"{{{
if options.split if options.split
" Split window. " Split window.
execute options.direction execute options.direction
\ (options.vertical ? 'vnew' : 'new') \ (options.vertical ? 'vsplit' : 'split')
endif endif
try try

View File

@ -454,6 +454,9 @@ snippet *neosnippet-unite-action-snippet*
============================================================================== ==============================================================================
CHANGELOG *neosnippet-changelog* CHANGELOG *neosnippet-changelog*
2012-10-27
- Fixed for :SnippetEdit.
2012-10-26 2012-10-26
- Improved javascript snippet file. - Improved javascript snippet file.