O
13

I finally switched to VS Code after fighting with Notepad++ for 3 months

I was learning Python and used Notepad++ because it was fast and simple. But I kept making dumb mistakes like forgetting to close parentheses or mis-matching indentations. I switched to VS Code last week and it catches all that stuff as I type. The built-in terminal and debugger saved me like 5 hours on one project alone. Has anyone else found a tool that just clicked after struggling with something else?
2 comments

Log in to join the discussion

Log In
2 Comments
sarah531
sarah5311mo agoMost Upvoted
I switched from Notepad++ to VS Code too. The auto-formatting is what got me, stops me from breaking everything with wonky spacing. Even just for basic HTML and CSS, VS Code's extensions make it way less painful. Notepad++ is great for quick edits though, still keep it around for that.
9
blake322
blake3221mo ago
The auto-formatting in VS Code is nice but you have to be careful with it. It can mess up your HTML structure if you have a lot of nested elements or inline styles. I've had it add extra spacing that actually broke my layout, especially with older CSS that uses floats. Notepad++ is still better for those quick fixes where you just need to change one line without the editor trying to reorganize everything.
4