this post was submitted on 28 Feb 2024
633 points (97.2% liked)

Programmer Humor

19289 readers
1068 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] kakes@sh.itjust.works 1 points 7 months ago (1 children)

What if we did that, and then wanted to align something?

[–] fidodo@lemmy.world 1 points 7 months ago* (last edited 7 months ago) (1 children)

Then you use the variable width space for code indentation, then, when you're at the code indentation level, you'd switch to spaces for alignment. If the IDE special cased all space characters at the start of the line you wouldn't have that flexibility. You could also easily create a linter that ensured that the variable width space always has the correct indentation level, and ignore the standard space characters after it.

[–] kakes@sh.itjust.works 2 points 7 months ago

You're entirely correct. Plus, I hate the idea of changing the width of spaces for any reason lol.