Difference between revisions of "How to avoid DOS line endings in Windows tools"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
===Developer Editors===
 
If you are going to work on the viewer code you need to conform to the [[Coding Standard]].
If you are going to work on the viewer code you need to conform to the [[Coding Standard]].
Standards your editor must support:
Standards your editor must support:
Line 5: Line 5:
* A tab must generate 4 spaces.
* A tab must generate 4 spaces.


==Windows==
==Notepad++==
Configuring Notepad++ ([http://notepadplusplus.org/ download Notepad++])
Configuring Notepad++ ([http://notepadplusplus.org/ download Notepad++])


Line 16: Line 16:
** Check the box Replace by space
** Check the box Replace by space
** Note: if you are going to be using the program as a general editor you can customize which file types this tab to space conversion applies to.
** Note: if you are going to be using the program as a general editor you can customize which file types this tab to space conversion applies to.
==Macintosh==
==Linux==

Revision as of 11:16, 31 January 2011

If you are going to work on the viewer code you need to conform to the Coding Standard. Standards your editor must support:

  • Lines must end with a LF (linefeed) character.
  • A tab must generate 4 spaces.

Notepad++

Configuring Notepad++ (download Notepad++)

  • Line ending
    • You should not need to specify the line ending for an existing file but for a new file you will want to set Edit->EOL Conversion->UNIX Format
  • Tab spacing
    • Go to Settings->Preferences->Language Menu/Tab Settings.
    • Click on [Default]
    • Change Tab Size to 4
    • Check the box Replace by space
    • Note: if you are going to be using the program as a general editor you can customize which file types this tab to space conversion applies to.