Tabs vs Spaces
-
Splitter! The Real Distance is obviously 3 spaces per tab.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
Nah I like a tight real estate, 2 spaces per tab works best.
Never underestimate the power of human stupidity - RAH I'm old. I know stuff - JSOP
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Tabs because it is just one keypress.
-
FreedMalloc wrote:
I generally set up the IDE to sub 4 spaces for a tab.
Infidel! All right-minded people know that a tab stop is every 8 spaces! Anything else is heresy! Your immortal soul will be condemned to an eternity in an infinite loop unless you repent!
Keep Calm and Carry On
No, TAB stops are by distance, not character count. A half inch is sufficient.
-
I will answer the question you intended to ask. I use tabs. Set to 2 spaces as that is the indentation size I always use. I use the tabs because a lot of my coworkers use 4 spaces and they came just adjust the tab size to give the code the look they are used to.
If you can't laugh at yourself - ask me and I will do it for you.
I would've never thought there could be a good argument for tabs, but this sounds like a good way to satisfy everyone. My only question would be what the code looks like outside the IDE, in GitHub or even Notepad, for example.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
I would've never thought there could be a good argument for tabs, but this sounds like a good way to satisfy everyone. My only question would be what the code looks like outside the IDE, in GitHub or even Notepad, for example.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.That's exaclty what drove me to ask. GitHub. PR's sometimes don't format correctly.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
I use 1 tab = 4 spaces. /ravi
My new year resolution: 2048 x 1536 Home | Articles | My .NET bits | Freeware ravib(at)ravib(dot)com
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
I use whatever the project already uses. Some projects use tabs, some use spaces. When I start new projects, I use whatever the specific team[1] already uses - some teams have tabs set up as default in their IDE, some have spaces. In the rare occasion that I start a solo project with no team I tend to go with spaces. [1] I work across multiple teams.
-
Splitter! The Real Distance is obviously 3 spaces per tab.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
2½ spaces per tab
Nothing succeeds like a budgie without teeth. To err is human, to arr is pirate.
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
I use the tab key, but my IDE converts them to spaces.
Nothing succeeds like a budgie without teeth. To err is human, to arr is pirate.
-
FreedMalloc wrote:
I generally set up the IDE to sub 4 spaces for a tab.
Infidel! All right-minded people know that a tab stop is every 8 spaces! Anything else is heresy! Your immortal soul will be condemned to an eternity in an infinite loop unless you repent!
Keep Calm and Carry On
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
I prefer tabs because when I have to move code from an indentation level to another it requires less deletes. Also allows for fancy editing like a different character width for indentation than for code (it helps for people who have to set the font to 12pt with 125% or 150% magnification active, like yours truly). Also I have worked on a codebase modified by several people in several years with different tools and different indentations. Code was something like
if (condition){
code;
if (cnd2)
{
code;
}
code;
while(something)
{
code;
}
}Tabs would have fixed the lunacy.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
-
2½ spaces per tab
Nothing succeeds like a budgie without teeth. To err is human, to arr is pirate.
:sigh: There's always someone who just wants to watch the world burn, isn't there? OK. You can have your half-a-space provided it's the top half.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
I would've never thought there could be a good argument for tabs, but this sounds like a good way to satisfy everyone. My only question would be what the code looks like outside the IDE, in GitHub or even Notepad, for example.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.I only care about what it looks like to the one working on the code. When dealing with changes to legacy code, I follow the patter established, which usually means copy/paste of the disparate numbers of spaces depending on the mood of the coder when it was created in notepad :wtf: I really hate the ripple effect that gives - I mean choose an indentation style and stick with it. I'm happiest when working on fresh apps where I can use auto indenting on vscode. So much pleasanter and I can properly collapse the bits I don't need to see right now. Why would I screw that up with using spaces? Just no.
-
I only care about what it looks like to the one working on the code. When dealing with changes to legacy code, I follow the patter established, which usually means copy/paste of the disparate numbers of spaces depending on the mood of the coder when it was created in notepad :wtf: I really hate the ripple effect that gives - I mean choose an indentation style and stick with it. I'm happiest when working on fresh apps where I can use auto indenting on vscode. So much pleasanter and I can properly collapse the bits I don't need to see right now. Why would I screw that up with using spaces? Just no.
What does using spaces have to do with collapsing code that you don't need to see right now?
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
Quick survey... How many of you uses tabs vs spaces to indent your code?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
What does using spaces have to do with collapsing code that you don't need to see right now?
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.You should see this crazy code. It was like they decided arbitrarily each day where to start their nested content.
code
condition
{
code
condition
{
super long lines of code that go all the way off a standard screen with references to deeply nested arrays
}
other code
} -
You should see this crazy code. It was like they decided arbitrarily each day where to start their nested content.
code
condition
{
code
condition
{
super long lines of code that go all the way off a standard screen with references to deeply nested arrays
}
other code
} -
What does using spaces have to do with collapsing code that you don't need to see right now?
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.Plus it's way easier to screw up the number of spaces needed. I guess that IDEs can be set to auto indent with spaces, but if someone else goes in there with notepad, it'll be a mess in a hurry. Using tabs discourages the use of notepad. Is that controlling? Maybe. I am a megalomaniac only in the coding, otherwise I'm very accommodating, so I'm comfortable with that.