Changing from a distro that defaults to nano to another that defaults to vim… What to do other than installing nano and changing visudo?

  • MrKoyun@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    9 hours ago

    Nano because like why would I bother with anything else? It’s just a quick and dirty text editor.

  • Ithral@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    4
    ·
    2 days ago

    Micro is pretty nice, has limited mouse support in the TUI line numbers highlighting. That or Neovim customized

  • 00xide@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    2 days ago

    neovim through nvf on NixOS. I’m not even a power user, I just had a shit mouse in college and didn’t want to use it and now I’m hundreds of lines of Lua too deep to go back. This is my life now.

  • Levi@lemmy.ca
    link
    fedilink
    English
    arrow-up
    49
    arrow-down
    1
    ·
    4 days ago

    Team Vim. Because I learned the vim basics once 20 years ago and never bothered to learn after that. :D

      • azimir@lemmy.ml
        link
        fedilink
        arrow-up
        7
        ·
        4 days ago

        That’s what I was taught at my first tech internship. It’s all they had on the UNIX system running the webserver in 1998.

        I did write some web pages the pulled live data from the backend. I had the pleasure of writing them in C. I got the data binding to some kind of CORBA system using extern variables that were bound at compile time. All of the html (no js or css yet) was hand built and generated from the C code.

        vi was the only editor on the system and there was no way to use arrow keys (the UNIX system didn’t have them on the keyboard at all).

        I also had the displeasure of building a backup system on a floppy where I had to write a bat script that could manually load a token ring driver, bind a SMB share, load Ghost backup software and backup the local hard drive at under 2mb (yay coax thicknet). The tool used to query and write through the hostname for the backup? Copycon. Fucking copycon in DOS. That showed me how a terrible (but working) tool could be to work with.

        Unless an editor can do reasonable vim emulation, I can’t take it seriously. You’re welcome to use it, but I won’t be able to get anything done in it quickly. The vi keys are too ground into my reflexes.

    • HeHoXa@lemmy.zip
      link
      fedilink
      arrow-up
      5
      ·
      4 days ago

      Vim sorely underrated. Great tools/hotkeys. Felt like a master pianist clacking away while the terminal went berserk until suddenly the 2 hour job was done in 20 minutes.

  • CodeAssembler@lemmy.ml
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 days ago

    Mostly Neovim and Nano. Tried out ed in the UNIX4 tape that got recovered, was strange but fun to see where sed, grep and other commands got their name from.

    GUI is still good old Sublime Text, but I almost completely switched to terminal based editors, I guess because of the nice work flow.

  • spacetff@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    3 days ago

    nano, vi, geany, kate…

    I prefer nano - simple to use & always available. I manage remote systems often from my mobile using termius: config file editing, writing simple scripts for some analysis/automation tasks and recording task notes and status. Using a tablet I might use vi but generally prefer nano.

  • dparticiple@sh.itjust.works
    link
    fedilink
    arrow-up
    28
    ·
    edit-2
    4 days ago

    At the risk of restarting the Editor wars (https://en.wikipedia.org/wiki/Editor_war) from days of yore, I find it interesting that emacs wasn’t even in your list of contenders. I hear it mentioned less frequently these days, so perhaps it’s going by the wayside?

    For the record, I’m a vi/vim user! I had the privilege of being taught to use it by an RFC-writing greybeard decades ago, and have used it without thinking ever since.

    For those who find themselves on a machine with only vi/vim, or want to learn, here’s a quick primer when editing a file (usually done by typing “vi foo.txt” in a shell) –

    :q! …Force quit vi (:q also works – gentler!)

    :wq! …Save file and quit vi

    i (then type characters) …insert text at current position

    A (then type characters) …Insert at end of current line

    G …go to first character of last line in the file

    /foo …search for first occurrence of “foo” in the file (hit / again to find additional instances)

    x …Delete character under cursor

    :56 …Go to line 56

    yy …Copy the line the cursor is currently on into the buffer

    p … Paste the buffer

    r (then type character) …Replace character under cursor

    u …undo (hit multiple times to undo prior actions)

    When done with a command like this, hit Esc to go back into normal mode.

    Second nature after a bit of practice! I used to work with a guy who insisted on using ed. That was… odd.

  • 9488fcea02a9@sh.itjust.works
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    3 days ago

    Been using linux full time for 10 years. I do almost all of my system admin stuff in the terminal (my desktop, laptop, home server with a few containers). But i cant for the life of me figure out vim (like i know how, but it just doesnt click for me or feel natural)… i tried a bunch of times and will keep trying… but until then, its (shamefully) nano for me

  • IrritableOcelot@beehaw.org
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    3 days ago

    My first experience with *nix was a professor leading me into a server room though two biometric locks and setting up the config files for a compute cluster faster than I would have been able to open the files.

    He was using Vim, and though it took me a while to learn, the sheer speed with which he was able to get us out of that unbelievably noisy server room sold me for life.

    Well, I use vim for text edits and nvim+extensions for an IDE. As close to a vim purist as is reasonable. But frankly, it’s the first one you learn to use well.