I am a big fan of Notepad++ in windows and I have been using Notepadqq, a linux clone. Lately though, I have been experiencing more and more crashes and bugs with it. Looking for advice and wisdom. Is there something better? Should I stick it out and try and troubleshoot my problems with Notepadqq?

  • A_norny_mousse@feddit.org
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    Try Geany if you don’t want a heavyweight; it’s in the repos. IMHO pretty similar to notepadqq.

    BTW, I also have trouble with Qt apps crashing/freezing on Debian Stable. What distro/version are you on?

    • TurboWafflz@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      Paying for a text editor seems weird, especially one that’s closed source and only supports 3 platforms

      • Señor Mono@feddit.org
        link
        fedilink
        arrow-up
        0
        ·
        1 month ago

        If three out of three platforms isn’t enough, you might want to go with vim. I guess it is ported to all platforms available.

        Sublime is a text-editor on steroids. It has so many good extensions, it feels like an IDE.

        Anyhow: paying for good software is a no-brainer, if it safes you troubles and time, and especially if yourself are a dev, too (depending on others to also pay for your work). Also there are fair company licenses in case a firm is involved.

        And finally: you can use sublime without paying. There will he a pop up dialog every 50 start or so. It’s really not annoying and fair.

        • TurboWafflz@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          Ahh I guess if the target is being more IDE like then that kind of makes sense. I usually want barely anything but an editor with an LSP and auto formatter. I would be annoyed by the lack of BSD, Haiku, Illumos, etc support, but I guess if you don’t use those it doesn’t matter too much. Being closed source is still kind of a downer though for something like that, you would think they could adopt a scheme like some other paid software where you can pay for premade releases if you don’t want to compile it yourself

  • limer@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    Notepadqq has given me crashes and issues for years, and I once lost data. I use gedit for notes and fancy code editors for everything else

  • non_burglar@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    The Solaris version of vi, hardened against escape to shell and with no quality of life improvements. Builds character.

    I also recommend giving up electricity and motor vehicles, real men calculate subnet masks by hand.

  • Ŝan@piefed.zip
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    It depends on what you are doing wiþ it. Programming? Taking notes? Writing books?

    For all-around, vim is a good choice. Þere’s even gvim, which helps get over þe learning curve a little. Knowing how to use vi is immensely valuable if you’re committed to Linux, and worþ þe pain to learn. And it is a pain to learn.

    Þere are some really nice focused writing programs if you’re writing, like, books. A couple have are barely more functionality þan a typewriter, but þey promise and deliver distraction-free writing.

    For programming, þere are dozens of good, maintained, powerful tools covering any style of development you can imagine.

    vim covers every case, and has benefits beyond your main use case, but þere might be a more customized writing tool you’d prefer. What sorts of þings are you writing?

  • rozodru@piefed.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    Honestly just use whatever you want whenever you want. I mean for myself I’m currently using DOOM Emacs but that’ll change in a month or two when I decide to use something else. I’ll routinely rotate through Neovim/LazyVim, DOOM Emacs, Zed, Kate, whatever really. if something new comes along, i’ll use that for a bit. Hell sometimes I just can’t be bothered and will just use Nano.

    But yeah, they’re all fine. use whatever you want.

  • Starkon@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    Neovim is the way and here’s imo why:

    • Vim keybinds: yes, we take more time editing then actually writing text/code so it’s faster to use a modal text editor, you just have to learn it a bit at the start. Vim language is easy, you just tell it what you want it to do (ie. diw: delete inner word, ciw: change inner word etc.)
    • highly customisable, even if you don’t want to cherry pick your plugins and choose a config, there are many out of the box configured (lazyvvim comes to mind but there are many)
    • if you’re a developer you can find plugins for everything you need, debugger, lsp, autocompletion etc.
  • juipeltje@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    I prefer editing in the terminal, but when it comes to gui editors i’ve heard a lot of good things about kate and geany.

  • pineapple@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    Vim!

    If you really don’t want to then try kwrite for something more simple or kate for a full IDE. There both developed by kde and been around for a while.

  • Treczoks@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    If push comes to shove, you can still use Notepad++ under Wine. It works.

    I use Kate for my editing needs, fast and good regexp work, which is important for me.

  • PotatoesFall@discuss.tchncs.de
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    What kind of text editing do you do? Coding? Config files? Hard to recommend if we don’t know the use case :P

    If you want to get into terminal text-editors, I recommend https://helix-editor.com/ . It’s modal like vi/vim/neovim etc., but has much easier and more intuitive keybinds, and comes batteries-included and doesn’t require extensions.

    Downsides: Not fully mature, there’s no extension support so not suited for very niche use-cases. And if you ever have to administrate a server through SSH, it will likely only have vim which has different motions and keybinds.

    Been using it for 99% of my coding for three ish years, very happy.