Skip to content

Commit

Permalink
Fix vsplit to not open empty buffer (#1098)
Browse files Browse the repository at this point in the history
* Fix vsplit to not open empty buffer

* Add changelog entry
  • Loading branch information
AwkwardKore authored Apr 1, 2020
1 parent 343508e commit 832bbaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- **.PATCH**: Pull Request Title (PR Author) [PR Number](Link to PR)
-->
#### 6.7
- **.3**: Fix vsplit to not open empty buffers when opening previously closed file (AwkwardKore) [#1098](https://github.com/preservim/nerdtree/pull/1098)
- **.2**: Fix infinity loop (on winvim) in FindParentVCSRoot (Eugenij-W) [#1095](https://github.com/preservim/nerdtree/pull/1095)
- **.1**: File Move: Escape existing directory name when looking for open files. (PhilRunninger) [#1094](https://github.com/preservim/nerdtree/pull/1094)
- **.0**: Open the parent directory when revealing a non-existent file with :NERDTreeFind (bouk) [#1090](https://github.com/preservim/nerdtree/pull/1090)
Expand Down
2 changes: 1 addition & 1 deletion lib/nerdtree/opener.vim
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function! s:Opener._newVSplit()
endif

call nerdtree#exec('wincmd p', 1)
call nerdtree#exec('vnew', 1)
call nerdtree#exec('vsplit', 1)

let l:currentWindowNumber = winnr()

Expand Down

0 comments on commit 832bbaa

Please sign in to comment.