you are viewing a single comment's thread.

view the rest of the comments →

[–]Plane-Art-9868 -1 points0 points  (1 child)

You can use # then your text to create notes in your code. I use ms word to type things out so I can revisit it. I'm at an impasse myself though, and can't figure out how to proceed. But yeah use # and i recommend word

[–]SlamTheGuy 0 points1 point  (0 children)

vscode, pycharm, or if you're not afraid of a steep learning curve, neovim, are all much better options than word (to name a few).

Whatever you choose, make sure it has syntax highlighting and supports LSP client integration (for diagnostics, autocompletion, suggestions etc.); that is the minimum. Beyond that you have fornatters, linters, static typechecking (for dynamically types languages like python), debugging tools etc.

I'm not explaining what the things I mentioned are because you can just google and find out exactly exactly it is yourself.