NERDTree-Revelar archivo en árbol


Hay un atajo que revela el archivo actual en el panel directorio NERDTree.

Like TextMate 'Reveal file in Drawer' - Ctrl + Command + R

Author: Akshay Rawat, 2011-10-07

2 answers

En: h NERDTree:

:NERDTreeFind                                                  :NERDTreeFind
    Find the current file in the tree. If no tree exists for the current tab,
    or the file is not under the current root, then initialize a new tree where
    the root is the directory of the current file.

No creo que esté ligado a nada por defecto, así que tienes que hacer un keybind tú mismo.

nmap ,n :NERDTreeFind<CR>

Es lo que aparece en mi .vimrc, junto con

nmap ,m :NERDTreeToggle<CR>
 148
Author: Thomas,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-10-08 13:52:56

Compruebe esto, automatiza la operación de sincronización, cada vez que cambie el búfer, el nerdtree se actualizará automáticamente (copié de aquí con pequeñas modificaciones)

" Check if NERDTree is open or active
function! IsNERDTreeOpen()        
  return exists("t:NERDTreeBufName") && (bufwinnr(t:NERDTreeBufName) != -1)
endfunction

" Call NERDTreeFind iff NERDTree is active, current window contains a modifiable
" file, and we're not in vimdiff
function! SyncTree()
  if &modifiable && IsNERDTreeOpen() && strlen(expand('%')) > 0 && !&diff
    NERDTreeFind
    wincmd p
  endif
endfunction

" Highlight currently open buffer in NERDTree
autocmd BufEnter * call SyncTree()
 10
Author: Chen Rushan,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-02-10 08:42:11