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.

enter image description here

I want to replace all the "four spaces" that wrote by another text editor with tabs. How can I use find/replace to achieve this?

share|improve this question

5 Answers

up vote 136 down vote accepted

Bottom right hand corner on the status bar, click Spaces: N (or Tab Width: N, where N is an integer), ensure it says Tab Width: 4 for converting from four spaces, and then select Convert Indentation to Tabs from the contextual menu that will appear from the initial click.

Similarly, if you want to do the opposite, click the Spaces or Tab Width text on the status bar and select from the same menu.

enter image description hereenter image description here

share|improve this answer
1  
While all answers are correct this one is the easiest one! Thanks – Mohsen Mar 5 '12 at 23:39
Gotta admit; it is :) Never used the status bar context menus, guess I always thought they were static indicators. – Ekin Koc Mar 5 '12 at 23:42
1  
They are not as stand out as they perhaps should be, I have a couple of bugs I must file for sublime no show stoppers. Excellent editor. – creminsn Mar 5 '12 at 23:50
You can also make use of settings in a sublime-project file if you want the editor to remember this setting for all files in a project – Michael Aug 23 '12 at 13:18
Saved me a load of time, wrote my own script to do this because using "Search and replace" didn't work properly most of the time working in .py files between platforms :/ – Torxed Oct 1 '12 at 15:18
show 3 more comments

Windows:

Ctrl+Shift+p

then type "indent"


Mac:

Shift+Command+p

then type "indent"

share|improve this answer
2  
this should be the accepted answer IMO! – engineerDave Feb 19 at 16:25

Do a regex "Search" for \t (backslash-t, a tab), and replace with four spaces.

Either the main menu, or lower-right status-bar spacing menu does the same thing, with less work.

share|improve this answer
This is the inverse of what the poster asked – Max Nanasy Apr 1 at 18:41
@MaxNanasy So it is. I guess my dislike of tab characters is so deep it's subconscious. – Dave Newton Apr 1 at 19:29

On main menu;

View -> Indentation -> Convert Indentation to Tabs / Spaces

share|improve this answer

To configure Sublime to always use tabs try the adding the following to preferences->settings-user:

{
    "tab_size": 4,
    "translate_tabs_to_spaces": false
}

More information here: http://www.sublimetext.com/docs/2/indentation.html

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.