this post was submitted on 05 Sep 2023
167 points (79.7% liked)

Programming

18719 readers
492 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] kevincox@lemmy.ml 19 points 2 years ago (3 children)

What environment are you using that has a hardcoded tab size? I haven't seen this since typewriters.

Some projects just use tabs as a compressed form of 8 spaces. But that is a sin. Use tab to mean "one indent level" and align with spaces if you need to. (the occasional ASCII art diagram)

[–] xigoi@lemmy.sdf.org 7 points 2 years ago (1 children)

What environment are you using that has a hardcoded tab size?

  • Termux
  • SourceHut
  • “View page source” in the browser
[–] kevincox@lemmy.ml 15 points 2 years ago* (last edited 2 years ago) (1 children)

Termux

I think running tabs -N (where N is you preferred tab size) in the terminal should work. This is what I use in my zshrc on desktop.

SourceHut

Yup, they seem to be pretty opinionated here. If you look at the source there is just an inlined style with a single rule pre { tab-size: 8 }. I guess that is what you get when you use opinionated tools. The user's browser isn't right, my preference is right!

“View page source” in the browser

On Firefox this uses my default tab size of 4. But I guess changing this default isn't user-friendly.

[–] JackbyDev@programming.dev 1 points 2 years ago (1 children)

You can't count it as good when it is unconfigurable when it happens to use your preference when the whole selling point of tabs is that they're configurable.

[–] kevincox@lemmy.ml 4 points 2 years ago (2 children)

I don't understand what you are trying to say. I agree that SourceHut forcing their preference isn't good. The other two are configurable and I have configured them to my preference on my machines.

[–] JackbyDev@programming.dev 0 points 2 years ago (1 children)

You made it sound like Firefox wasn't configurable, my bad. I thought you were saying you didn't care that it wasn't configurable because you liked the width they chose.

[–] kevincox@lemmy.ml 5 points 2 years ago

Oh no. It is configurable, although it requires editing userContent.css. So barely configurable. I think it defaults to 8 but I reduce it to 4.

[–] icesentry@programming.dev 4 points 2 years ago

Github uses 8 as a default. It's configurable though.

[–] Faresh@lemmy.ml 3 points 2 years ago

What environment are you using that has a hardcoded tab size?

Microsoft Windows' Notepad. I have sometimes used that when on a public computer.