Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I type a command in Vim, for example opening a file, I start to type the file name, and I want to press Tab and have Vim autocomplete the name. However, when I press Tab, vim puts in ^I for some reason.

How can I make Vim tab complete?

share|improve this question
@Downvoter care to explain? – Amir Rachum Aug 23 '10 at 16:14
see also :help wildmenu – pydave Jun 15 '11 at 17:24

1 Answer

up vote 8 down vote accepted

The character which starts command-line completion defaults to Tab only when nocompatible is set. In Vi compatible mode it's CTRL-E.

This is documented in :h cmdline-completion.

You can set nocompatible in your .vimrc file to make it work as expected.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.