5 ms·
That's just my english. Of course I meant that the tab size is the same as the size of 8 space characters. And it sounds like the tab _character_ is an equivale
by nsf 13y ago
That's just my english. Of course I meant that the tab size is the same as the size of 8 space characters. And it sounds like the tab _character_ is an equivalent to 8 spaces, which is not true. Sorry for confusing description.
- lsiebert 13y agoso, you can indent 9 times in an 80 column display, and less then that usefully? I'd much rather have tab size be set to get smaller based on the number of indentations/longest line.
- mich41 13y agoProphet says: 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. And I think I kinda agree with this.
- laumars 13y agoI do agree that there comes a point where you can get over zealous with indentation, but 3 levels deep is pretty common. In fact you idle at one level of indentation just with having your code inside a function. So basically all you need is one conditional inside a loop and you're already maxed out.
- FuzzyDunlop 13y agoProbably not good for ruby when combinations of the following things can result in deeply nested code: module class def if class << self def
- mich41 13y agoWell, the Prophet is a C programmer so his numbers may need adjustment by some constant for languages with objects, namespaces, modules, etc. But still excessive indentation is a hint that the code may benefit from some refactoring.