From e9db76f71fa29441b5d02600f3780a8abf8d45f6 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sat, 27 Oct 2012 12:20:00 +0900 Subject: [PATCH] - Fixed for :SnippetEdit. --- autoload/neosnippet.vim | 4 ++-- doc/neosnippet.txt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/autoload/neosnippet.vim b/autoload/neosnippet.vim index a42c1cd..ed6483c 100644 --- a/autoload/neosnippet.vim +++ b/autoload/neosnippet.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: neosnippet.vim " AUTHOR: Shougo Matsushita -" Last Modified: 25 Oct 2012. +" Last Modified: 27 Oct 2012. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -263,7 +263,7 @@ function! neosnippet#edit_snippets(args)"{{{ if options.split " Split window. execute options.direction - \ (options.vertical ? 'vnew' : 'new') + \ (options.vertical ? 'vsplit' : 'split') endif try diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index fae5f64..c6ad5b8 100644 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -454,6 +454,9 @@ snippet *neosnippet-unite-action-snippet* ============================================================================== CHANGELOG *neosnippet-changelog* +2012-10-27 +- Fixed for :SnippetEdit. + 2012-10-26 - Improved javascript snippet file.