Search code examples
vimnerdtree

Display available VIM commands using <tab>


Is there a way to display commands using tab? By commands, I don't mean bash ones, but vim ones, using :

For instance : I use Nerdtree plugin by typing ':' in NORMAL mode (:NERDTree). If I tab NER, I directly have NERDTree. Then in I tab again > NERDTreeCWD > NERDTreeClose > NERDTreeFind etc...

Is it possible to display all the available commands somehow in the status bar?

Thank you for your help!


Solution

  • Perhaps you're looking for <C-d>? This will show you all possible completions of the current command. See :help cmdline-completion.