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'm in INSERT mode and I have expandtab option switched on pressing tab results in inserting configured number of spaces.

But occasionally I want to insert tab character itself.

Do you know how to do this?

share|improve this question

1 Answer

up vote 95 down vote accepted

You can use <CTRL-V><Tab> in "insert mode". In insert mode <CTRL-V> inserts a literal copy of your next character.

EDIT: As noted by feedbackloop, on windows you may need to press <CTRL-Q> rather than <CTRL-V>.

share|improve this answer
10  
And then use . to repeat the last command if you want to insert multiple tabs. – Xavier T. Jan 24 '11 at 10:53
3  
I had some problems using this combination because I was in Command mode. Make sure you execute this command in EDIT mode. – Tryskele Jun 6 '11 at 9:35
2  
INSERT mode, technically. – mkmurray Sep 2 '11 at 16:13
1  
Note: If you're using gVim on Windows, you'll likely need to use CTRL + Q instead - see stackoverflow.com/questions/6951672/… – feedbackloop Jan 15 '12 at 1:12

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.