this post was submitted on 30 Sep 2024
897 points (94.2% liked)

linuxmemes

20986 readers
1678 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.

  • Please report posts and comments that break these rules!

    founded 1 year ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old
    [–] Naich@lemmings.world 136 points 2 weeks ago (4 children)

    Once you try Vim you will never use another text editor. Or any other program for that matter because you won't be able to exit.

    [–] davidgro@lemmy.world 32 points 2 weeks ago (5 children)

    I also had that experience with emacs, which has a built in help system. I couldn't find a topic on 'exit' or 'quit' and refused to just search online.

    Took me half an hour.

    [–] m4m4m4m4@lemmy.world 16 points 2 weeks ago (1 children)

    and refused to just search online

    Unless you were f*cked by your ISP as I am right now, that's having some balls. Or being masochist. But nothing in between

    load more comments (1 replies)
    load more comments (4 replies)
    load more comments (3 replies)
    [–] Draegur@lemm.ee 69 points 2 weeks ago (11 children)

    If I wanted to hear about what's good about Vim, should I:

    a) ask what's good about vim

    -OR-

    b) assert blindly that there is nothing good about vim so fanboys will come crawling out of the walls tripping over each other to tell me how I'm wrong?

    [–] MajorHavoc@programming.dev 57 points 2 weeks ago (3 children)

    Doesn't matter we will tell you either way.

    • Instead of simply shortcuts, vim uses "chords". Every new shortcut I learn can be combined intuitively* with all the other shortcuts I know.
    • Because of this there's no faster way to edit files than Vim in the hands of an experienced user.
    • this let's me spend almost no time editing code, freeing up the rest of my time for swearing at piss poor documentation.

    * I use "intuitively" here in a way that not merely stretches, but outright abuses the definition of the word.

    [–] Draegur@lemm.ee 15 points 2 weeks ago (1 children)

    Thank you for telling me all this neat stuff! :D

    I think I get what you are intending to imply by the word "intuitively"; it's that it eventually becomes as reflexive and fluid as touch-typing itself.

    Gosh you make it sound almost like you play Vim like an instrument more than use it...!

    Honestly that sounds cool ^_^

    load more comments (1 replies)
    load more comments (2 replies)
    [–] babybus@sh.itjust.works 18 points 2 weeks ago (3 children)

    You shouldn't talk about vim at all! Just write that vscode is the most flexible code editor.

    [–] LucidNightmare@lemm.ee 15 points 2 weeks ago (1 children)

    Don’t use Microsoft’s version. Use Vscodium! :)

    load more comments (1 replies)
    load more comments (2 replies)
    [–] kattfisk@lemmy.dbzer0.com 18 points 2 weeks ago (5 children)

    tl;dr: Run vimtutor, learn vim, enjoy life

    It's extremely powerful, for mostly the same reason that it's incomprehensible to newbies. It's focused not on directly inputting characters from your keyboard, but on issuing commands to the editor on how to modify the text.

    These commands are simple but combine to let you do exactly what you want with just a few keypresses.

    For example:

    w is a movement command that moves one word forward.

    You can put a number in front of any command to repeat it that many times, so 3w moves three words forward.

    d is the delete command. You combine it with a movement command that tells it what to delete. So dw deletes one word and d3w deletes the next three words.

    f is the find movement command. You press it and then a character to move to the first instance of that character. So f. will move to the end of the current sentence, where the period is.

    Now, knowing only this, if you wanted to delete the next two sentences, you could do that by pressing d2f.

    Hopefully I gave a taste of how incredibly powerful, flexible, yet simple this system is. You only need to know a handful of commands to use vim more effectively than you ever could most other editors. And there are enough clever features that any time you think "I wish there was a better way to do this" there most certainly is (as well as a nice description of how).

    It also comes with a guide to help you get over the initial learning curve, run vimtutor in a console near you to get started on the path to ~~salvation~~ efficient editing.

    load more comments (5 replies)
    load more comments (8 replies)
    [–] WeLoveCastingSpellz@lemmy.dbzer0.com 51 points 2 weeks ago (4 children)

    nano just works for me man

    [–] nickwitha_k@lemmy.sdf.org 15 points 2 weeks ago (5 children)

    Getting used to vim has made nano unusable for me. The muscle memory is too strong. That and all of the regex and plugin features (ex. LSP) are just too useful.

    [–] ArchAengelus@lemmy.dbzer0.com 12 points 2 weeks ago

    I had the same experience. Nano is great if you’re used to notepad or a generic, limited text editor.

    Once you learn a terminal editor like eMacs or vim, why go back? So much less hand motion going to mouse, arrows, and back.

    load more comments (4 replies)
    load more comments (3 replies)
    [–] Mora@pawb.social 37 points 2 weeks ago (1 children)
    [–] ma1w4re@lemm.ee 42 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

    alias vim=nvim
    alias vi=nvim
    alias nano=nvim
    alias emacs=nvim
    alias code=nvim

    export EDITOR=nvim
    export VISUAL=nvim
    export PAGER=nvim

    load more comments (1 replies)
    [–] itslilith@lemmy.blahaj.zone 36 points 2 weeks ago (6 children)
    [–] Jumuta@sh.itjust.works 12 points 2 weeks ago

    vanilla helix is so nice, the keybindings make so much more sense and it feels really comfortable

    load more comments (5 replies)
    [–] cccc0@sh.itjust.works 36 points 2 weeks ago (3 children)

    Vim is a puzzle based text editor

    [–] AVengefulAxolotl@lemmy.world 13 points 2 weeks ago (2 children)

    Exactly, it is lovely. Editing text with it is actually enjoyable.

    load more comments (2 replies)
    load more comments (2 replies)
    [–] ikidd@lemmy.world 31 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

    I do everything with cat, sed and awk.

    Fuck your TUIs.

    load more comments (5 replies)
    [–] sunoc@sh.itjust.works 29 points 2 weeks ago (2 children)
    [–] Boxscape@lemmy.sdf.org 44 points 2 weeks ago (2 children)
    [–] sunoc@sh.itjust.works 12 points 2 weeks ago

    Nooo not the pinky ! :(

    load more comments (1 replies)
    [–] 9point6@lemmy.world 22 points 2 weeks ago (4 children)
    load more comments (4 replies)
    [–] ludicolo@lemmy.ml 25 points 2 weeks ago (16 children)

    Anytime I open Vim I ask the same question.

    "how the fuck do I use you?"

    then go back to nano

    repeat.

    load more comments (16 replies)
    [–] MonkderVierte@lemmy.ml 22 points 2 weeks ago (1 children)
    [–] Klear@lemmy.world 23 points 2 weeks ago (3 children)
    load more comments (3 replies)
    [–] fossilesque@mander.xyz 22 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

    NANO GANG RISE

    for everything else, there's sublime.

    [–] Semi_Hemi_Demigod@lemmy.world 13 points 2 weeks ago (1 children)

    I tend to work on customer systems where I'm not allowed to install anything. I've yet to encounter one that doesn't have vi installed, but I've seen a few without nano.

    [–] kattfisk@lemmy.dbzer0.com 13 points 2 weeks ago (5 children)

    vi is part of the POSIX standard, so it'll be available in some form on almost anything UNIX-flavoured

    load more comments (5 replies)
    load more comments (1 replies)
    [–] andros_rex@lemmy.world 18 points 2 weeks ago (4 children)

    Genuinely took most of my notes in college on vim, when you get good it’s just faster.

    load more comments (4 replies)
    [–] lustyargonian@lemm.ee 18 points 2 weeks ago

    I've no choice coz I haven't been able to quit for last 7 years.

    [–] aniki@discuss.tchncs.de 17 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

    Is the whole point of this community to repost tired old memes or are ya'll just painfully uncreative?

    :q!

    [–] mEEGal@lemmy.world 14 points 2 weeks ago
    load more comments (1 replies)
    [–] 4oreman@lemy.lol 17 points 2 weeks ago (1 children)
    [–] renzev@lemmy.world 53 points 2 weeks ago (3 children)
    load more comments (3 replies)
    [–] dezmd@lemmy.world 17 points 2 weeks ago (5 children)

    The only Dad advice you nerds need:

    mcedit from the Midnight Commander (mc) tool is the superior text editor.

    I don't even run arch, btw.

    load more comments (5 replies)
    [–] interdimensionalmeme@lemmy.ml 16 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

    How did these people have "text editor wars" and yet failed to deliver a text editor half as good as microsoft's edit.com ?

    I'm sorry nano, you're think you're hot ?

    But you put search on CTRL+W !!!

    Do you know how stupid that is ?

    Just go and try that in your browser ...

    load more comments (1 replies)
    [–] Fox@pawb.social 15 points 2 weeks ago (3 children)
    load more comments (3 replies)
    [–] MistressRemilia@lemmy.sdf.org 14 points 2 weeks ago (1 children)

    I'll stick with my trusty Emacs (and Zile)

    load more comments (1 replies)
    [–] TwilightKiddy@programming.dev 13 points 2 weeks ago

    May I introduce you to our Savior Helix?

    [–] Wanderer@r.nf 13 points 2 weeks ago (6 children)

    In the meantime I'm happy with Kate.

    [–] milicent_bystandr@lemm.ee 12 points 2 weeks ago

    Aw, I'm sure she's happy with you too . ❤️

    load more comments (5 replies)
    [–] regeya@lemmy.world 13 points 2 weeks ago (3 children)

    I'm gonna laugh my ass off if someone finds out there was some obscure Emacs fork or clone designed to run Clojure or something, and it's named Again

    load more comments (3 replies)
    [–] cupcakezealot@lemmy.blahaj.zone 12 points 2 weeks ago

    there is no text editor there is only nano

    load more comments
    view more: next ›