this post was submitted on 28 Sep 2024
659 points (96.1% liked)

Programmer Humor

19282 readers
641 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
[โ€“] Klicnik@sh.itjust.works -1 points 21 hours ago (1 children)

I tried using VScode to play around with Golang. I had to quit coding to take care of something else. I hit save, and suddenly I have way fewer lines of code. WTF? Why did/would saving delete code? After much digging, it turns out because the all knowing VSCode thought because I had not yet referenced my variables, I never would, and since my code I wanted to save and continue later wouldn't compile, it must be quelled. Off with its head!

Anyway, I decided to use vim instead. When I did :wq, the file was saved exactly as I had typed it.

[โ€“] masterspace@lemmy.ca 0 points 16 hours ago* (last edited 16 hours ago)

This is either false, or you didn't understand the environment you were working in.

You have to explicitly turn on the setting to have VSCode reformat on save, it's not on by default, and when it is on, it's there for a reason, because having software developers that do not all follow the same standard for code formatting creates unpredictable needless chaos on git merge. This is literally 'working as a software developer on a team 101'.