vote up 8 vote down star
1

Does anyone know how to convert tabs to spaces in Notepad++? I found a webpage that suggests it's possible (http://www.texteditors.info/notepad-replacements-compared.php) but I couldn't find any information about how to do it. I like to be able to do that because some web forms don't respect code with tabs in it.

flag

5 Answers

vote up 14 vote down check

you need to replace \t - make sure you use extended mode!
repalce

link|flag
just to emphasize, you need to put four space (or two, or whatever) in the "replace with" box. – hasen j Jan 18 at 12:26
you can replace the \t (tab) to any number of spaces, see wiki.answers.com/Q/How_many_spaces_is_a_tab/… – Dror Jan 18 at 12:31
This will only work properly for tabs at the start of a line. E.g. in a line like this (using [tab] to represent a tab): "[tab]foo[tab]bar", with a tab size of 4 spaces, the first tab should be 4 spaces, but the second tab should be only 1 space. – mercator Jan 18 at 18:39
@mercator - your case is entirely context-dependent. If that is the case, the OP can use 'Find Next'/'Replace' to jump to the next occurrence and make case-by-case decisions. The original question doesn't seem to indicate that concern. – DaveE Nov 12 at 17:11
vote up 0 vote down

There is no 'Edit Components' tab in the preferences setup. You need to go 'Language Menu/Tab Settings', there is an option in there to control tab behavior. You can even set it to work differently depending on the language of the file.

link|flag
vote up 0 vote down

This does not work for non-leading spaces

link|flag
vote up 12 vote down

First set the "replace by spaces" setting in Preferences. Next, open the document you wish to replace tabs with Highlight all the text Then select TextFX -> TextFX Edit -> Leading spaces to tabs or tabs to spaces

link|flag
Yes, this is far more sensible than doing search/replace, and TextFX is built-in to Notepad++. – rjh Mar 7 at 14:05
This is actually the best answer. – KyleFarris Aug 16 at 0:36
vote up 13 vote down

Settings --> Preference --> Edit Components (tab) --> Tab Setting (group) --> Replace by space

link|flag
Thanks for the reply. I was hoping there was a way to just apply it to a highlighted block of text. I prefer to work with tabs. I just want to be able to switch to spaces before pasting some code into a form. – Helephant Jan 18 at 12:17
1  
While the reply by Dror is certainly the 'answer', this is definitely also helpful to know for other uses! – Marc Bollinger Jul 22 at 21:12
Not the answer to the question but the answer that I was looking for. Cheers, Aron. – Brent Plump Aug 15 at 10:18

Your Answer

Get an OpenID
or

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