Slashdot Log In
Elastic Tabstops — An End to Tabs vs. Spaces?
Posted by
timothy
on Mon Jul 03, 2006 02:07 PM
from the stretchy-logic dept.
from the stretchy-logic dept.
An anonymous reader writes "Along with Vi versus Emacs, the tabs versus spaces argument must rank as one of the classic holy wars among coders. Here's an attempt to solve it by making tabstops expand or shrink to fit their contents. The concept's pretty cool to use, so be sure to have a play with the demo!"
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
From Wiki (Score:5, Funny)
My bible says it is morally wrong to use Vi.
Re:From Wiki (Score:3, Insightful)
Re:From Wiki (Score:3, Funny)
Well, of course it is. VI is Latin for 6, which is 1/3 of 666, and we know what that stands for.
As further proof, check vi's origins. It came from Berkeley, and their BSD system has a little d[a]emon as a symbol. Spawn of Satan, QED.
Re:From Wiki (Score:5, Funny)
Mine says,
"And behold sayeth the Lord, thou shalt edit thine text in Vi and Vi alone, even when thou art forced by the unclean luser to useth the operating system of unholiness. Thou shalt always keep a copy of the Holy editor on thine key of the USB lest thou shalt fall into temptation and edit thine text in the way of the unclean. Any who useth Emacs or the accursed notepad shalt be stricken from the Book of the Holy Sysadmin for all eternity. So sayeth the Lord." -1st Epistle to the Admins of Systems 1:15-16
There it is in black and white. Vi is the way of truth and light. All others are unclean.
Parent
Re:From Wiki (Score:3, Insightful)
Re:From Wiki (Score:3, Interesting)
Re:From Wiki (Score:3, Informative)
How we got here (Score:5, Interesting)
The way we got into this mess is that in early versions of UNIX, tab stops were set to 8 spaces in the TTY handler. This was not because tab stops were intended as indentation. It was because an ASR-33 teletype could tab that far in one character time. It was for optimizing output time. (Back in those days, TTY output processing had to have time delays to handle the mechanical lag in printers. "How many nulls were required after each carriage return" was an issue, and better systems kept track of the printing column position and adjusted the delay accordingly. Peripherals used to be really dumb.)
If some reasonable indentation value like 4 or 5 had been chosen, everything would have been fine.
Re:How we got here (Score:3, Interesting)
Not just mechanical output devices. I wrote a TTY driver for a Viewpoint terminal that I was driving from an 8052. That thing needed delays all over the place. (Imagine my surprise, years later, to open one up and find an 8051 sitting in there.) I actually discovered it needed delays from the UNIX side of things, because the first thing I implemented was a serial-to-serial pass through, and I had to mess w/ the various stty delay settings before I stopped losing text.
But, yes... 80 columns goes back
whether or not this solves the problem (Score:4, Insightful)
Whether or not this solves the problem (I don't think it does), I get real nervous when source code starts being perceived as a document that lends itself to proportional fonts. Maybe I haven't been in the latest and greatest IDEs lately and am missing something here, but source code seems to scream for canonical form, and proportional font is not that.
I think vim has a reasonable approach (do the research: shiftwidth, tabstops, softtabstop, etc.), I assume there are other approaches in emacs.
Start talking about proportional font source code documents, and now everyone's going to want to have styles, and all the confusing garbage that is word processing. As difficult as source code and programming is, it doesn't need to be more nuanced in word processing.
Re:whether or not this solves the problem (Score:3, Interesting)
I use the command line program ident to apply my style to other people's code, sure I don't send them this way I r
Re:whether or not this solves the problem (Score:3, Interesting)
Yeah, but people would still screw it up. For example:
if () {
} else {
}
if ()
{
}
else
{
}
# Conway style
if () {
}
# This also is a problem with BSD, but I thought I
A Tab is one character that represents 8 spaces. (Score:2)
Re:A Tab is one character that represents 8 spaces (Score:2)
Well, that's a broken idea (Score:2)
With the line:
And watch as the tab spacing of "lalala();" two lines down gets ruined.
He's right that mandating "tabs must be N spaces" is stupid, though. Use tabs to indent blocks of code, use spaces for aligning code that isn't in blocks, and people should be able to set whatever tab size they want without ruining anything.
Oh... Honestly! (Score:2)
Then emacs will replace tabs with spaces. In the various programming language modes, tab indents to the right location (Which you can customize somewhere else.)
vim has a similar setting but I rather despise vim (I prefer nvi or old school vi when doing vi things.)
Brilliant! (Score:2)
The subject of tabs vs spaces should be clear (Score:4, Insightful)
Let me quote the relevant standard:
Linux kernel coding style
[cut]
First off, I'd suggest printing out a copy of the GNU coding standards,
and NOT read it. Burn them, it's a great symbolic gesture.
[cut]
Chapter 1: Indentation
Tabs are 8 characters, and thus indentations are also 8 characters.
There are heretic movements that try to make indentations 4 (or even 2!)
characters deep, and that is akin to trying to define the value of PI to
be 3.
Rationale: The whole idea behind indentation is to clearly define where
a block of control starts and ends. Especially when you've been looking
at your screen for 20 straight hours, you'll find it a lot easier to see
how the indentation works if you have large indentations.
Now, some people will claim that having 8-character indentations makes
the code move too far to the right, and makes it hard to read on a
80-character terminal screen. The answer to that is that if you need
more than 3 levels of indentation, you're screwed anyway, and should fix
your program.
In short, 8-char indents make things easier to read, and have the added
benefit of warning you when you're nesting your functions too deep.
Heed that warning.
[cut]
But even if you fail in getting emacs to do sane formatting, not
everything is lost: use "indent".
Now, again, GNU indent has the same brain dead settings that GNU emacs
has, which is why you need to give it a few command line options.
However, that's not too bad, because even the makers of GNU indent
recognize the authority of K&R (the GNU people aren't evil, they are
just severely misguided in this matter), so you just give indent the
options "-kr -i8" (stands for "K&R, 8 character indents").
"indent" has a lot of options, and especially when it comes to comment
re-formatting you may want to take a look at the manual page. But
remember: "indent" is not a fix for bad programming.
Linus Torvalds.
Consistency is better than religion (Score:4, Insightful)
For several large projects I work with where there are lots of developers, consistency of the source code is considerably more important than any particular developer's opinion on what the correct behavior of tabs and spaces are. These are projects where it is pretty much expected that there are or will at least eventually be developers that use both vi and emacs with zealotry as well a myriad of IDE environments. For at least vi and emacs, all source files utilize a local variables block that is understood by both editors in order to encourage a project-defined convention with consistent indentation:
With that comment block at the very end of all source files (whether they be C, C++, Tcl, Perl, Sh, SGML, etc), we do quite well in maintaining order and minimizing the indentation dispute. For the IDE environments, it at least gives them clear documentation on how to configure their IDE indentation preferences to match in every file. Maintaining a tabwidth/tabstop of 8 ensures consistent source display in most environments, including text printing and console display, leaving projects to simply define what offset/shiftwidth level they want for indentation. It can similarly still be tweaked for the projects that seem to insist on no tabs or want to match some IDE default religion.
Don't mix em. (Score:3, Informative)
But God help you if you mix them together in the same program.
I've met editors that put four spaces for the first indent, then a tab for the second (removing the previous four spaces in the process). It was fine when you viewed the code in that particular editor, but open the same code in another editor with different tab stops, and it became practically unreadable. If they'd stuck with just tabs or just spaces it would have been fine, but nooooo.... some bright spark had to mix 'em together. Grrrrrrr.
(For what it's worth, the editor in question was LSE, on a VMS system. I don't know to this day whether that was the default setting or a setup made by someone at the company, but it caused a nightmare when we ported the system to Windows)
Uh... ok... (Score:4, Funny)
Tabs just need to go away so we can get back to real debates, like CR vs. CR/LF vs. LF.
Re:A standard tab length would be easier (Score:2)
both vim and emacs will do this. unless i misread the question...
Re:A standard tab length would be easier (Score:2)
I don't know what the big deal is, just
Re:A standard tab length would be easier (Score:2)
Re:A standard tab length would be easier (Score:4, Insightful)
Parent
Re:A standard tab length would be easier (Score:5, Funny)
Parent
Re:A standard tab length would be easier (Score:5, Insightful)
You might as well tell the world "Earth's official language is now officially Esperanto, so fuck you". The effect would be about the same.
Parent
Re:A standard tab length would be easier (Score:2)
You might as well tell the world "Earth's official language is now officially Esperanto, so fuck you". The effect would be about the same.
La lingvo oficiala da tero estas Esperanton, tial fiku vin!
Re:A standard tab length would be easier (Score:3, Insightful)
Mi pensas, cxu "fikugxi" ne estas pli tawga vorto? :P
Saluton, karaj esperantistoj!Re:A standard tab length would be easier (Score:3, Insightful)
They became interwoven into the computer-programming subset of society back in the 60's and 70's, if not earlier.
But even beside that, a lot of things are set semi-arbitrarily in the tech world. So why not the length of a tab?
Because the proposal isn't to define a new standard, it's to re-define a very well-entrenched (if crappy) existing standard. All 60 million people who are alrea
Re:A standard tab length would be easier (Score:3, Insightful)
Re:A standard tab length would be easier (Score:2)
Are you happy? / Cxu vi estas felicxa?
Silly Slashdot and its lack of UTF-8 support
Re:A standard tab length would be easier (Score:5, Insightful)
I actually like this idea, because it actually you from using this seemingly-simple but in actuality horribly complicated idea that tab = x*space. Instead they have an actually simple idea: Each tab is a seperate column of text. Line up items in the same column with each other. (Of course, how simple this is in practice is yet to be deterimined, but it seems simpler to me.)
This idea is actually about seperateing sementic and content info. Programmers use tabs (those who do) to convey sementic info. If we can make the program understand that, then we can offer more flexiblity to the user on how to present the information.
Parent
Re:A standard tab length would be easier (Score:3, Informative)
In Vim: Press shift+v to highlight the current line, go to the opening brace, press % to go to the closing brace (highlighting the whole block in turn), then press = to auto-indent.
In command mode, == auto-indents the current line, << and >> indent to right and left respectively.
Back to t
Re:A standard tab length would be easier (Score:5, Informative)
If you want that from an IDE, eclipse does that, and pretty robustly at that. I wouldn't want to miss it.
For more simple editors for a quick text edit, my favorite is EditPlus [editplus.com]. It lets you choose between classical tabs and whitespace tabs, as how long (in characters) a tab in either mode should be treated, it has the auto-indent you mentioned, reacting to freely definable characters (for example, auto-indent forward after '{' or '(', and back after '}' or ')', respectively). Best of all, it lets you define these parameters independently for plain text, c/c++, java, HTML, Perl, etc., etc., as well as any number of custom syntaxes you may wish to import or define yourself. A small selection of useful features of a great tool. Disclaimer: I am in no way affiliated with Editplus or the company behind it, just a happy user.
Parent
Re:A standard tab length would be easier (Score:2, Interesting)
Tabs versus Spaces: An Eternal Holy War. [jwz.org]
Jamie Zawinski
A very clever solution indeed. Apparently some clever bastard sovled this issue six years ago. Return t
Re:A standard tab length would be easier (Score:5, Insightful)
It's so simple, it's quite embarassing for the whole of the computer-literate society that people still get their kickers in a twist about it.
Anybody who tries to lay down the law by saying that a tab must be 4, 8 or 2 characters' width has missed the point of the tab key completely.
As for your wish, I'm willing to bet money that either vim or emacs will do it for you.
Parent
Re:A standard tab length would be easier (Score:3, Insightful)
I'm sure a lot of things seem so simple when you're so ignorant of the actual issue [go-pear.org].
Re:A standard tab length would be easier (Score:5, Insightful)
eg: (---> means 'tab', '.' means 'space')
void foo ()
{
--->if (something)
--->{
--->--->/* I like to format my comments so that
--->--->.* the stars make a vertical line,
--->--->.* but I don't care how much you like to
--->--->.* indent */
--->--->bool something = SomeLongFunction() &&
--->--->.................Another()
--->}
}
This code satisfies everybody with a good text editor. If you like 8 spaces, set your editor so. If I like 2, 7 or 3.14 I can set mine. Pressing space n times annoys everybody who likes 2n, n/2 or any other number of spaces.
That way they can get on with arguing over important issues like the placement of {
;)
Parent
Re:A standard tab length would be easier (Score:3, Insightful)
Re:A standard tab length would be easier (Score:3, Interesting)
int foo ()
{
if (
some_really_long_expression &&
some_other_really_long_expression
) {
DoSomethingClever(42);
DoSomethingComplex(
param1,
Re:A standard tab length would be easier (Score:3, Informative)
Re:A standard tab length would be easier (Score:3, Informative)
I thought they had...
[History lesson]
Typewriters - very early typewriters - had tab stops equivalent to 8 spaces. That was it; no ifs, no buts, no negotiation. Later models had the first tab stop equivalent to 8 spaces, then 2 or 3 adjustable tab stops inside that. Even later ones had the first stop adjustable was well.
Y'see, the TAB key is short for "table" - it was designed to make it easy to
Re:A standard tab length would be easier (Score:2)
Re:A standard tab length would be easier (Score:2, Funny)
C-Space C-c } Tab
Re:A standard tab length would be easier (Score:3, Insightful)
Tab is already standardized. It means either "move onto the next record" in tabular data, or in programming languages "indent". If you have a preference for how much like code to be indented, then you get to set your editor in accordance. Indenting code with tabs is far more considerate than indenting with spaces. Indenting with tabs says "Indent a little. I trust you to set your editor accordingly".
Word is a shitty text editor. (Score:2)
But code editors they are not.
We brough content folding and syntax highlighting to text editors. Now it's an appropriate time to bring them layout magic, I suppose.
Re:Word is a shitty text editor. (Score:2)
It's not a comment about Microsoft. (Score:3, Insightful)
I've never used it so I can't comment. So it has variable-width fonts and logical indenting and spacing? Good for them.
If it appears in anything _besides_ Visual Studio I'll be a happy camper.
Re:Source code is not a table (Score:3, Insightful)
Yeah. And this is exactly the way it should be today. In mature Emacs modes for example, pressing the TAB key doesn't necessarily mean that you insert an ASCII TAB character, instead it indents to the right place. Modern editors should take the burden of 'manual' indenting from the coder and instead let him focus on the