vote up 1 vote down star

I want to use only tabs without space

\t\t...\tdef

not

\t \tdef

or

\t\t  def
flag

38% accept rate
1  
Your question title doesn't match the content. Can you fix one to match the other to clarify what you mean? – Charles Bailey Sep 8 at 18:01

1 Answer

vote up 4 vote down

So long as you are using noexpandtab, vim will only add spaces when 'tabbing' manually if the setting of the softtabstop option does not equal the tabstop option value.

Similarly, vim won't use spaces when you use the << or >> commands if you use the same setting for shiftwidth as you do tabstop.

vim won't stop you from adding spaces inbetween tabs if you really try. If you want to spot these you can make occasional use of the :set list command or even use a syntax highlight rule to show them. (The sequence '\t ' is usually 'wrong'.)

link|flag
Instead of higlighting I what auto removing unnecessary spaces. – ais Sep 8 at 18:25
You mean something like: :s/ \{8\}^I/^I^I/gc then :s/ \+^I/^I/gc where ^I is usually typed <C-V><tab> ? – Charles Bailey Sep 8 at 20:21
May be is there any way to not use replace? – ais Sep 9 at 6:29
What do you mean? Appropriate tabstop settings will mean that vim won't automatically insert spaces; if you don't want them you won't be inserting them manually. This only leaves the possibility that you already have them. If this is the case, then logically you have to replace them (somehow), how else are they going to disappear? – Charles Bailey Sep 9 at 7:01
2  
Not with a conventional put command, I don't believe, but you could set up a new function and keybinding to do a :put and a :retab! in one go? – Charles Bailey Sep 9 at 10:08
show 2 more comments

Your Answer

Get an OpenID
or

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