Hi experienced devs , I am a beginner programmer. I mostly use code completion and go-to source , and rename function and objects, code-pretty. Other features not so much. What features do you use often And what features are not that useful in an IDE and can be considered bloat? P.S.- Which is that one feature that you can’t live without?( sorry for sounding like tiktok wannabe)

  • jjjalljs@ttrpg.network
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    Is your question “what does an ide do that a text editor doesn’t”?

    Auto complete is very nice.

    Find usages is necessary.

    Syntax highlighting. The yellow squiggle for when it thinks you maybe messed up. (Like when you typo = instead of ==)

    Refactor: rename. Smarter than find replace

    Refactor: move. Also smart

    Using an interpreter in docker is nice. It can find all the sources without me installing anything on the host machine. Being able to cmd click to view the library code is huge.

    I don’t really use the debug tools because I’m fine with the command line pdb, but they’re very useful for people who like them.