|
|
|
|
|
by Zikes
3800 days ago
|
|
We really shouldn't get into this, but I can't help myself. - Every single text editor that's come after notepad.exe has had automatic tab/space conversion. Pressing tab inserts N spaces, pressing backspace un-indents N spaces, etc. - In some languages, this is not a feature. 2-character tabs, using two tabs to indent for alignment: var myVar = 1,
otherVar = 2,
anotherVar = 3;
Opened later in an editor using 4-character tabs: var myVar = 1;
otherVar = 2,
anotherVar = 3;
- {}[]<> and more aren't used for anything close to their original literary intent. |
|