this post was submitted on 05 Mar 2026
115 points (95.3% liked)

linuxmemes

30474 readers
582 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.
  • Don't come looking for advice, this is not the right community.
  • 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
     

    I personally havent really used emacs for organizing, but I really like it for bash coding and writing software documenation in orgmode. I am even starting to get a little bit comfortable at writing my .emacs file but at some point I will have to do a lot of reorganizing and updating and I kind of dont want to do it (I still use .emacs and not emacs.d/init.el and all keybindings still use the legacy global-set-key command).

    Apart from the work I am putting into it it is really great, because when I actually get to do stuff I can do so with great efficency. I am even starting to miss my emacs keybinds when not using emacs (especially ctrl-k for killing from your cursor position to the end of the line ctrl-a for jumping to the beginning of a line and ctrl-e for jumping to the end of a line). At this point when I am writing stuff in emacs (as example working on a bash script) I at maximum use my mouse for scrolling.

    Fuck, I really did turn into the meme (and I am not even using it for longer than 4-5 months at maximum)___

    you are viewing a single comment's thread
    view the rest of the comments
    [–] sepi@piefed.social 5 points 2 days ago (1 children)

    huh

    ctrl x ctrl s go brrrrrrrrrrrrrrrrrrrrrrrrrrr

    [–] Skullgrid@lemmy.world 5 points 2 days ago (3 children)

    me use nano too, emacs vim scary.

    [–] cows_are_underrated@feddit.org 2 points 2 days ago (1 children)

    Vim and emacs are really worth it when you do a lot of writing and editing (whether it be code or text). If you only occasionally edit config files nano is completely fine. However I do recommend to learn stuff like exiting and saving in vim because no matter what, about every single distro has some form of vim so you might encounter it in imporant scenarios and then you know your way around.

    [–] tal@lemmy.today 2 points 1 day ago* (last edited 1 day ago) (1 children)

    I have, in the past, recommended, if you use Unix systems in a technical way, knowing at least how to do the following in vi (and I use emacs):

    • Close the program, discarding changes. From vim's command mode, : q ! RET.

    • Exit writing changes. From vim's command mode, : w q RET.

    • Move the cursor around. Today, usually you can get by with arrow keys -- I haven't been on a system where one thing or another was dicked up in a way that rendered arrow keys unusable in many years, but from Vim's command mode, "h", "j", "k", and ""l.

    • Enter insert mode to Insert text. From vim's command mode, "i".

    • Exit insert mode. From vim's insert mode, ESC.

    • Search for text. From vim's command mode, "/", the text to search for, and RET.

    • Replace text. From vim's command mode, ":%s/foo/bar/g" to change all instances of foo to bar in a given file.

    If you've got that much and you ever find yourself on a system that only has vi available (and it may not be vim), you can at least do the basics.

    But the widespread deployment of nano has made learning basic vi less important than was once the case. Even very small systems that I've run into tend to have nano.

    Note that busybox, a popular statically-linked shell often used in a rescue-the-horribly-broken-system scenario, does not have nano but does have a minimal "vi"-alike, so you might still want to know vi in that case.

    Thats exactly the kind of stuff I meant.

    [–] wltr@discuss.tchncs.de 2 points 2 days ago (1 children)
    [–] tal@lemmy.today 1 points 2 days ago

    It was originally pico, which IIRC was bundled with the pine email client (a "tree name" pun off elm, an older email client, whose name came from "ELectronic Mail"; this pun extended to many other Unix email clients, like mulberry and such). I think that "pico" probably stood for something like "PIne COmposer". Because it was designed to be particularly approachable, listed the basic commands at the bottom of the screen, and pine was installed on a lot of systems, it kind of got adopted as the "Unix notepad for the terminal"


    a simple editor that most users could use for lightweight tasks. Then IIRC due to pine predating standard open-source licenses, the nano clone was created to be GPL.

    searches

    https://en.wikipedia.org/wiki/Pico_(text_editor)

    Yeah, it's "pine composer", it was indeed bundled with pine. And apparently part of the problem was that the license didn't fully spell out the conditions under which it could be redistributed.

    I'm only ever using a command line text editor for changing the odd config file, so for me the benefits of vim or emacs has never outweighed the hassle of figuring them out. So I stick with nano.