Fix NERDTree opening with the wrong size. (#1008)

* Fix NERDTree opening with the wrong size.

There were two commands that seemed to be causing the NERDTree window to
open in exactly half the screen width. They are:

- silent! execute 'edit ' . t:NERDTreeBufName        in _createTreeWin()
- setlocal nobuflisted                         in _setCommonBufOptions()

These commands were reseting the width of NERDTree. The solution I chose
was to resize the window after creating the new window, and then to set
winfixwidth before setting the other common buffer options.

* Update change log and version number.
This commit is contained in:
Phil Runninger
2019-06-27 01:34:10 -04:00
committed by GitHub
parent 347a58b0b0
commit 2cbc76bbfd
3 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# Change Log
### 5.1...
- **`.2`**: Fix NERDTree opening with the wrong size. (@PhilRunninger) #1008
- **`.1`**: Update Changelog and create PR Template (@PhilRunninger) #1007
- **`.0`**: Too many changes for one patch...
- Refresh a dir_node if the file wasn't found in it, and look once more. (@PhilRunninger) #1005