this post was submitted on 27 Dec 2023
135 points (74.7% liked)

linuxmemes

25686 readers
202 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 users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • 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.
  • 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, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old
    [–] victorz@lemmy.world 56 points 1 year ago (3 children)

    I feel like the images should be switched.

    load more comments (3 replies)
    [–] EuroNutellaMan@lemmy.world 43 points 1 year ago (5 children)

    If you wanna save changes: :wq

    If not: :q!

    Else: :SpanishInquisition

    [–] youngGoku@lemmy.world 6 points 1 year ago (6 children)

    Why do so many people prefer :wq over :x?

    [–] EuroNutellaMan@lemmy.world 11 points 1 year ago

    Cause I don't like to think about my x

    [–] lars@lemmy.sdf.org 5 points 1 year ago

    :x was a gamechanger. And it doesn’t update the file’s modify date if you made no changes.

    Sometimes I just sit back and think about all that saved time and effort so much that I have actually lost time by switching from :wq.

    load more comments (4 replies)
    [–] metallic_z3r0 5 points 1 year ago

    Hmm, I didn't expect that last one.

    load more comments (3 replies)
    [–] dannym@lemmy.escapebigtech.info 29 points 1 year ago* (last edited 1 year ago) (2 children)

    I prefer the extremely intuitive:

    [C-R]=system("grep -P "PPid:\t(\d+)" /proc/$$/status | cut -f2 | xargs kill -9")

    or

    i:!grep -P "PPid:\t(\d+)" /proc/$$/status | cut -f2 | xargs kill -9[esc]Y:@"[cr]

    It just rolls off the fingers, doesn't it?

    Edit: damn it lemmy didn't like my meme because it assumes that characters between angle brackets are html tags :( you ruined it lemmy

    EDIT 2: rewrote it, just assume that square brackets are buttons not characters

    load more comments (2 replies)
    [–] aard@kyu.de 26 points 1 year ago (2 children)

    I always get annoyed when I'm on some system and nano pops up and I need to figure out how to kill that thing.

    [–] jol@discuss.tchncs.de 24 points 1 year ago (7 children)

    Nano literally tells you all the shortcuts to your face.

    load more comments (7 replies)
    [–] mvirts@lemmy.world 4 points 1 year ago

    Same. As a vim user I now can't quit nano.

    [–] doctorn@r.nf 22 points 1 year ago (1 children)

    There's a button to exit vim on your pc. Just hold it 7 seconds and vim is closed. πŸ˜…

    it's right next to the turbo button

    [–] backhdlp@lemmy.blahaj.zone 20 points 1 year ago (2 children)

    you don't need the ! when you have the w, because your changes already get saved.

    [–] raptir@lemdro.id 17 points 1 year ago

    If anything it is dangerous as it will still exit even if changes cannot be saved.

    [–] DocMcStuffin@lemmy.world 5 points 1 year ago (1 children)

    Try editing a file in /etc as a regular user. It happens sometimes and you really want that warning that the write failed.

    Anyway, :x is superior. It only writes if there are changes. So, your mtime doesn't change unnecessarily.

    [–] backhdlp@lemmy.blahaj.zone 3 points 1 year ago (1 children)

    wait people care about the mtime?

    [–] carcus@lemmy.ml 3 points 1 year ago

    I’ve had to do forensics on a rogue change. In finding when and who actually changed the file, mtime can help narrow it down when compared with wtmp.

    [–] Bishma@discuss.tchncs.de 17 points 1 year ago (4 children)

    :ggdGwq (please don't do this)

    [–] JustinAngel@lemmy.world 11 points 1 year ago (1 children)

    VIM Golf.... Same outcome, fewer strokes:

    %d|wq

    you can replace wq with x

    :%d|x

    [–] ignotum@lemmy.world 10 points 1 year ago (1 children)

    I use Vim daily, and i have absolutely no clue what that command would do, what would it do? Delete the document, save and quit?

    [–] filiberto_kunstlinger@lemmy.world 14 points 1 year ago* (last edited 1 year ago) (2 children)

    exactly.

    gg -> go to top of document

    d -> delete (actually, it's cut, but it destroys the mnemonic)

    G -> here is a modifier to "d" and tells it do "delete until end of document"

    w -> write current state of buffer to disk

    q -> exit program

    [–] backhdlp@lemmy.blahaj.zone 16 points 1 year ago (2 children)

    Actually not, binds and commands aren't the same. ggdG only works as a series of inputs, while wq only works as a command (with the colon).

    [–] victorz@lemmy.world 7 points 1 year ago (1 children)

    Exactly. The colon needs to be just before the w, not at the front of the sequence...

    [–] CaptainBlagbird@lemmy.world 6 points 1 year ago (1 children)

    And while you're at it, throw an ESC in there at the beginning, will ya?

    load more comments (1 replies)
    [–] Bishma@discuss.tchncs.de 3 points 1 year ago

    yeah, I screwed it up

    load more comments (1 replies)
    [–] backhdlp@lemmy.blahaj.zone 8 points 1 year ago

    E492: Not an editor command: ggdGwq

    load more comments (1 replies)
    [–] slapchop@lemmy.world 9 points 1 year ago
    [–] chris@l.roofo.cc 9 points 1 year ago (3 children)
    <ESC>
    <CTRL>+Z
    killall -9 vim
    
    [–] construct_@lemmy.ca 8 points 1 year ago

    And then sudo apt install nano

    [–] bitwaba@lemmy.world 3 points 1 year ago (1 children)

    If you can remember this, you can remember how to save and quit

    load more comments (1 replies)
    [–] user224@lemmy.sdf.org 3 points 1 year ago (2 children)
    load more comments (2 replies)
    [–] eruchitanda@lemmy.world 9 points 1 year ago* (last edited 1 year ago) (1 children)
    [–] tabularasa@lemmy.world 3 points 1 year ago

    I am also a shift-zz fan.

    [–] B_DL@lemmynsfw.com 4 points 1 year ago
    [–] JGrffn@lemmy.world 4 points 1 year ago* (last edited 1 year ago) (10 children)

    Serious question. Why? No, for real, why? Why are these hard to understand editors still the default on most distros and flavors? Why haven't they reinvented themselves with easier to understand shortcuts?

    I get the feeling my comment will attract heat, but I'm a web dev, studied comp Sci for years, have worked for nearly a decade and have spent over half my 30 year old life using computers of all sorts. I'm by no means a genius and I by no means know enough about this or most tech subjects, but I literally only knew how to close vim with and without saving changes in a recent vim encounter, purely due to a meme I saw in this community a few days prior, and I had already forgotten the commands by the time I saw this post. Nothing about vim and alternatives feels intuitive or easy to use, and you may say it's a matter of sitting down and learning, which you can argue that, but you can't argue this isn't a bit of a gatekeeper for people trying to dip their toes into anything that could eventually rely on opening vim to do something.

    I won't try to deny its place in computer history, or its use for many, or even that it is preferred by some, but when every other software with keyboard shortcuts agrees on certain easy to remember standards, I don't quite understand how software that goes against all of that hasn't been replaced or hasn't reinvented itself in newer versions.

    Then again, I have no idea what the difference between vi, vim, emacs, and nano are, so roast away!

    [–] captainjaneway@lemmy.world 14 points 1 year ago

    Vi is meant for old school and modern terminals. Ctrl+S or Ctrl+C had very particular purposes in software control flow. With Vi you can communicate via SSH on almost any unix file system. It's basically a universal editor that doesn't require a mouse or a lot of keys on a keyboard. You can get away with just a subset of the ASCII set.

    So for one, it's kind of like having a backwards compatible piece of software that exists on almost any system you might need to remotely control via a keyboard with no GUI.

    For two, once you do learn how to use Vi/Vim/Emacs, you'll be far faster at typing. It has several useful tricks for automating typing (faster copy/paste, copy/paste n-times, jump around lines/chars, go-to lines, search via Regex, etc.) which are particularly useful in a programming context.

    Generally, it's worth a developer spending at least a day or a week typing only in Vi for programming. Yes, you'll be slow and clunky. But the moment you have to SSH into a server and make meaningful changes to a file, you'll be happy you spent the time.

    [–] voidMainVoid@lemmy.world 13 points 1 year ago

    Some people like vim the way it is. That's why they haven't re-invented it. If you want to use a more intuitive text editor, there are plenty available (such as nano or micro).They don't need to turn vim into a clone of something that already exists.

    As for why it's still the default... It's the same reason why everybody uses QWERTY keyboards when Dvorak is clearly superior. People already know how to type with QWERTY and they don't want to take the time to re-learn with a new layout, change their workflows, etc.

    It isn't universal, though. Garuda Linux defaults to micro. The web dev boot camp I was in didn't bring vim up at all! We only used nano! I think that was a disservice to the students, but the instructors must've thought that it would be too confusing.

    Then again, I have no idea what the difference between vi, vim, emacs, and nano are, so roast away!

    Lol. Git Gud, Noob.

    [–] camr_on@lemmy.world 8 points 1 year ago

    Why would vim reinvent itself? Vim's functionality has been standard for years, and works as expected. You can always use nano or something similar instead, which is probably a lot more usable to someone who doesn't want to learn all the advanced functionality of vim or emacs

    [–] bitwaba@lemmy.world 5 points 1 year ago

    As a ~20 year vim user, and by no means a proficient power user (any time I end up in recording mode, I just mash ESC repeatedly until this start behaving normally again.), I think it's just "it's easier for someone that doesn't know how to use it to learn, than it is for everyone that already knows how to use it to relearn".

    Like the damn scroll options on laptop trackpads. Multitouch scroll down = scroll down. Then someone decided it needed to match the way phone scrolling works after smartphones became popular, so now there's lots of scroll down = scroll up software behavior. But the options are still there to behave neither way. If you don't like the vim commands, you're free to install something that behaves in a way that you expect. If you do like vim commands, install it and get the behavior that users have come to expect for the last 20+ years.

    [–] rtxn@lemmy.world 4 points 1 year ago* (last edited 1 year ago)

    To ensure the Unix-like standard of maximum backwards compatibility. Vi (the original, before Vim) was made in an age where computer keyboards might not have had luxury features like arrow keys, but did have alphanumeric keys and minimally competent users. It has worked for almost half a century, so unless you're Microsoft, why would you change it?

    Even today, many people prefer it because you don't have to move your hand far away from the home row while typing or navigating, and the modality gives the user a much greater toolkit (seriously, I just about nutted when I discovered d i "). Not having to rely on modifiers and the arrow keys also reduces the risk of the repeated stress injury known as Emacs pinky.

    load more comments (4 replies)
    [–] LainOfTheWired@lemy.lol 3 points 1 year ago

    Wouldn't you want to just want to type q! As you've probably opened it and accidentally made changes you didn't want to. So you wouldn't want to save the config file. Or the text file you just created.

    I love how in the comments on even the most basic vim meme I learn something new

    load more comments
    view more: next β€Ί