How to set up tab spaces
This page will describe how to set up certain IDEs and Text Editors to not use the default tab character (\t) when the Tab key is pressed and instead use a predefined number of regular space characters instead. This is useful because when importing/exporting to different editors and/or platforms these tab characters can be read differently causing code to not be displayed in it's original intended form
Notepad++ v5.6.6
This part uses Notepad++ v5.6.6 to set up tab spaces. Other versions should still be similar.
To change the default action of the tab key:
- Click on the Settings menu
- Select Preferences
- Go to the Language Menu/Tab Settings tab
- Make sure [Default] is selected in the rightmost list
- At The bottom right, click the blue underlined number beside the Tab size:
- Press 3, and press enter
- Check Replace by space
- Click Close
This should set up all newly opened documents to insert 3 spaces when the Tab key is pressed instead of the default \t.
Visual Studio
Comfirmed to work for Visual Studio 2008/2010. Should be the same for 2005 aswell
To change the default action of the tab key:
- Click on the Tools menu
- Select Options...
- Click the + beside Text Editor
- Click the + beside All Languages (or whatever language you want)
- Select Tabs
- Type 3 for both Tab size: and Indent size:
- Select the Insert spaces radio button
- Press Ok
This should set up all newly opened documents to insert 3 spaces when the Tab key is pressed instead of the default \t.