I regret nothing. Say what you want.

Edit: I just saw the two typos. If you find them, you’re welcome to keep them.

  • AbnormalHumanBeing@lemmy.abnormalbeings.space
    link
    fedilink
    arrow-up
    61
    arrow-down
    1
    ·
    4 months ago

    I genuinely do a lot of coding in Kate, the standard KDE editor. It’s enough to do a lot of things, has highlighting, and is more than enough when you just need a quick fix.

    I am also still using nano when editing stuff in the terminal. Please, don’t judge me.

    • mmddmm@lemm.ee
      link
      fedilink
      arrow-up
      9
      ·
      4 months ago

      Yep, I came here to say that Kate is really nice. Even though I’m an emacs user and won’t use it.

      Nano, on the other hand, can’t do almost anything, so I can’t recommend that people make heavy use of it. It’s ok for random small edits, but that’s it. (By the way, YSK that you can set your terminal to use Kate as the default editor by setting the $EDITOR variable.)

    • SatyrSack@feddit.org
      link
      fedilink
      English
      arrow-up
      7
      ·
      4 months ago

      KWrite is the standard text editor. Kate is the advanced one. The name actually literally stands for “KDE Advanced Text Editor”

        • SatyrSack@feddit.org
          link
          fedilink
          English
          arrow-up
          3
          ·
          edit-2
          4 months ago

          Huh, I did not know that any didn’t. I just tried a bunch, and here is a quick breakdown of what was preinstalled on each:

          Distro Kate KWrite
          Bazzite true true
          Debian true true
          Fedora false true
          KDE Neon true false
          Kubuntu true false
          Manjaro true true
          openSUSE true false
          SteamOS true true
          • Ephera@lemmy.ml
            link
            fedilink
            English
            arrow-up
            2
            ·
            4 months ago

            Well, I can throw in another for free:

            distro Kate kwrite
            openSUSE true false

            But yeah, interesting list. These days, KWrite is basically just Kate with different configuration, if I understand correctly, so it always feels like you might as well go with Kate. In my opinion, KWrite is also not particularly easier to use, since basic editing works the same, but I guess, that can be disagreed on.

            I do like that Kate is pre-installed. Imagine Windows, but rather than notepad.exe, you get Notepad++ out of the box. Now imagine that to also be a whole lot better and then that’s what it feels like to have Kate on fresh installations.
            You can just start coding something right away, without it being necessary to install a different editor.

    • AnAmericanPotato@programming.dev
      link
      fedilink
      English
      arrow-up
      5
      ·
      4 months ago

      Geany is a nice GUI option. It’s a bit more capable but still lean.

      It’s probably time for me to re-evaluate the host of coding editors out there. For the most part I just use good text editors. Though I do love Spyder, I only use it for a certain subset of tasks.

    • CanadaPlus@lemmy.sdf.org
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      4 months ago

      Me too. I’m still not sure what the problem is and I’m kind of afraid to ask.

      I do have the plugin for multi-line editing set up, I guess.

  • TinyRhino@lemm.ee
    link
    fedilink
    arrow-up
    21
    ·
    4 months ago

    If you’re not writing it all down on paper and then punching holes in cards, you’re doing it all wrong

  • hperrin@lemmy.ca
    link
    fedilink
    English
    arrow-up
    10
    ·
    4 months ago

    I write all my code on paper and use OCR to convert it. It almost works sometimes.

  • Black616Angel@discuss.tchncs.de
    link
    fedilink
    arrow-up
    10
    ·
    4 months ago

    And then there is a colleague who programs in Notepad++ directly on the test server and then just copies his code to prod.

    (yes, he works alone on that project)

  • vfscanf()@discuss.tchncs.de
    link
    fedilink
    arrow-up
    9
    ·
    4 months ago

    Gedit was my main text editor for years. I also used it for work. It has all the basic features that you need for coding. For everything else I use the terminal.

  • Adalast@lemmy.world
    link
    fedilink
    arrow-up
    8
    ·
    4 months ago

    I used Notepad++ for virtually all coding I did (Python, JS, various Markup Languages, Action Script back in the day, etc) for a couple decades. The only reason I use VSCode now is because I inherited a nightmare of a legacy spaghetti bowl and needed the function tracing to attempt to figure out anything. I still prefer N++ for most small projects.

  • blaue_Fledermaus@mstdn.io
    link
    fedilink
    arrow-up
    8
    ·
    4 months ago

    Code in MS Word because it handles tabs correctly, unlike all code editors.

    Tab means “move to the next tabstop”, not “advance a fixed amount”.

    (I don’t do it, I’m not THAT insane)

    • ValiantDust@feddit.org
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      4 months ago

      Me: hits return.

      Word: “Sure, here, a new line. I already indented it for you, same as the one before. Like a good IDE.”

      Me: “That’s nice of you, Word, but I want this one to be indented one tab stop less than the line before.” Hits delete.

      Word: “Delete, you say? Sure, back to the line before.”

      Me: “No, no! Just delete one tab! Maybe, if I select the line and hit dele…”

      Word: “Why of course!”

      Me: “Shit, it’s gone. Undo! Hmm… Move the thingy here on top?”

      Word: “Move all the lines you say? No problem!”

      Me: “Nvm, I’ll just indent everything by hand with spaces.”

  • NigelFrobisher@aussie.zone
    link
    fedilink
    arrow-up
    7
    ·
    4 months ago

    At uni I did a lot of my Java coursework in notepad, then I’d have to take it into a computer lab on a floppy, tar it and upload it to a unix terminal so it could be emailed to the professor. Java syntax with only the command line compiler is not fun.