• bruhbeans
    link
    fedilink
    3
    edit-2
    2 years ago

    Please tell me there’s more in this series. I need all the fucking vim memes.

  • Arthur Besse
    link
    fedilink
    32 years ago
    ^Z
    kill %1
    fg
    

    (how a hypothetical bash medium-poweruser who doesn’t know vi might do it)

  • SudoDnfDashY
    link
    fedilink
    1
    edit-2
    2 years ago

    BTW, you can use C-z in to exit Emacs in a terminal, and minimize Emacs when using a GUI.

    • @Ferk@lemmy.ml
      link
      fedilink
      3
      edit-2
      2 years ago

      C-z does not “exit” Emacs, it just puts its process to sleep in the background. You can go back to the Emacs process you opened by entering “fg” in the terminal.

      C-z is actually a standard terminal control code, it works with most processes (I expect vim too) by sending the SIGTSTP signal.