vim-nerdtree-tabs icon indicating copy to clipboard operation
vim-nerdtree-tabs copied to clipboard

NERDTree and tabs together in Vim, painlessly

Results 43 vim-nerdtree-tabs issues
Sort by recently updated
recently updated
newest added
trafficstars

Having switched to Vim 8 I've encountered a strange bug: when closing a tab by hitting `:q` the NERDTree window resizes to nearly a maximum of the screen. Remaining tabs...

In my `.vimrc` i have this code: ```vimscript let g:nerdtree_tabs_open_on_console_startup=1 let g:nerdtree_tabs_autofind = 1 ```` if I search something using this code: `:vimgrep /expression/ path/to/find`, receive the bellow messages to...

Changing the autofind variable to 1 doesn't work. Also, when I do change the variable to one, whenever I open the quickfix window with :copen, a list of errors appears....

The NERDTreeTabs is a awesome plugin, I like it very much. But I have a question. I want to open NERDTreeTabs automatically when vim starts up if no files were...

The shortcut `ctrl-w o` maximizes a pane `:h CTRL-W_o`. It can be hit again to undo the minimization. If nerdtreetabs is toggled during the zoom in time, it gets in...

Only take action when we are in NERDTree window, and no more window with normal buffer open. Before quitting Vim, delete the buffer so that the '0 mark is correctly...

Hi, Just a suggestion: If `nerdtree_tabs_open_on_console_startup` is set to 2, and if vim is opened with no argument, then tabs should show up. This would make the behaviour complete. Best,...

Hello, From this website link http://superuser.com/questions/195022/vim-how-to-synchronize-nerdtree-with-current-opened-tab-file-path , I can find the solution to synchronize NERDTree with current opened tab file path. But I'm tring just only use this vim-nerdtree-tabs plugin...

I have `set number` set in my configuration file (I use `neovim` but that should not matter). When I open a directory, the numbers are show in the `NERDTree` tab...

I added this to my .vimrc: ``` call NERDTreeAddKeyMap({ \ 'key': 'b', \ 'callback': 'NERDTreeEchoCurrentNode', \ 'quickhelpText': 'echo full path of current node' }) function! NERDTreeEchoCurrentNode() let n = g:NERDTreeFileNode.GetSelected()...