Reputation: 583
Do I really have to keep pressing down and up and only going 1 line at a time in NERDTree? Is there a way to page down or search for files? My tree structure is pretty big and it's a bit of a pain to traverse that way.
Upvotes: 3
Views: 420
Reputation: 8885
It is a normal split window so you can use standard vim shortcuts:
Ctrl-D "move half-page down
Ctrl-U "move half-page up
Ctrl-B "page up
Ctrl-F "page down
Upvotes: 1
Reputation: 22171
The standard movement controls apply. So you could use CTRL + f to move down a page at a time (and the reverse CTRL + b to move a page up at a time).
To search for a directory or file you can use the standard / + [search-pattern].
Upvotes: 4