We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:version
git rev-parse --short HEAD
Zoom will take almost full screen
Customize zoom size by global variable in vimrc
add g:NERDTreeZoomSize to ui.vim
function! s:UI.toggleZoom() if exists("b:NERDTreeZoomed") && b:NERDTreeZoomed let size = exists("b:NERDTreeOldWindowSize") ? b:NERDTreeOldWindowSize : g:NERDTreeWinSize exec "silent vertical resize ". size let b:NERDTreeZoomed = 0 else exec "vertical resize ". g:NERDTreeZoomSize let b:NERDTreeZoomed = 1 endif endfunction
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
:version
: vim8.1git rev-parse --short HEAD
:Process
Current Result
Zoom will take almost full screen
Expected Result
Customize zoom size by global variable in vimrc
Screenshot(s)
Possible Fix
add g:NERDTreeZoomSize to ui.vim
The text was updated successfully, but these errors were encountered: