1321
The lengths we have to go to
(sh.itjust.works)
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.
@alphacyberranger
This is why I have my VSCodium set to highlight all indentation levels in my settings.json
https://code.visualstudio.com/api/references/theme-color
Can you please share a screenshot of how this looks like?
@Toldry
Here's the relevant section of my settings.json
json { "workbench.tree.renderIndentGuides": "always", "workbench.tree.indent": 15, "editor.guides.indentation": true, "workbench.colorCustomizations": { "editorIndentGuide.background": "#fd6bff", "tree.indentGuidesStroke": "#fd6bff" } }
@alphacyberranger