913
submitted 2 months ago by renzev@lemmy.world to c/linuxmemes@lemmy.world
top 50 comments
sorted by: hot top controversial new old
[-] Naich@lemmings.world 139 points 2 months ago

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 months ago

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 months ago

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 months ago

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 58 points 2 months ago

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 months ago

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 months ago

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

[-] LucidNightmare@lemm.ee 15 points 2 months ago

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 months ago

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 months ago

nano just works for me man

[-] nickwitha_k 16 points 2 months ago

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 months 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)
[-] cccc0@sh.itjust.works 38 points 2 months ago

Vim is a puzzle based text editor

[-] AVengefulAxolotl@lemmy.world 14 points 2 months ago

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

load more comments (2 replies)
load more comments (2 replies)
[-] Mora@pawb.social 37 points 2 months ago
[-] ma1w4re@lemm.ee 42 points 2 months ago* (last edited 2 months ago)

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 months ago
[-] Jumuta@sh.itjust.works 12 points 2 months ago

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

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

I do everything with cat, sed and awk.

Fuck your TUIs.

load more comments (5 replies)
[-] sunoc@sh.itjust.works 29 points 2 months ago
[-] Boxscape 44 points 2 months ago
[-] sunoc@sh.itjust.works 12 points 2 months ago

Nooo not the pinky ! :(

load more comments (1 replies)
[-] 9point6@lemmy.world 22 points 2 months ago
load more comments (4 replies)
[-] ludicolo@lemmy.ml 25 points 2 months ago

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 months ago
[-] Klear@lemmy.world 24 points 2 months ago
load more comments (3 replies)
[-] fossilesque@mander.xyz 22 points 2 months ago* (last edited 2 months ago)

NANO GANG RISE

for everything else, there's sublime.

[-] Semi_Hemi_Demigod@lemmy.world 13 points 2 months ago

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 months ago

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 19 points 2 months ago

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

[-] smooth_tea@lemmy.world 12 points 2 months ago

I'm sure someone already made a graph plotting the hours wasted learning vs the seconds gained not moving your mouse.

[-] lustyargonian@lemm.ee 18 points 2 months ago

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

[-] 4oreman@lemy.lol 17 points 2 months ago
[-] renzev@lemmy.world 54 points 2 months ago
load more comments (3 replies)
[-] dezmd@lemmy.world 17 points 2 months ago

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)
[-] aniki@discuss.tchncs.de 17 points 2 months ago* (last edited 2 months ago)

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 months ago
load more comments (1 replies)
[-] interdimensionalmeme@lemmy.ml 16 points 2 months ago* (last edited 2 months ago)

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 16 points 2 months ago
load more comments (3 replies)
[-] MistressRemilia 14 points 2 months ago

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

load more comments (1 replies)
[-] Wanderer@r.nf 13 points 2 months ago

In the meantime I'm happy with Kate.

[-] milicent_bystandr@lemm.ee 12 points 2 months ago

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

load more comments (5 replies)
[-] regeya@lemmy.world 13 points 2 months ago

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)
[-] TwilightKiddy@programming.dev 13 points 2 months ago

May I introduce you to our Savior Helix?

[-] SeekPie@lemm.ee 12 points 2 months ago* (last edited 2 months ago)

What about notepad++ under wine?

load more comments (4 replies)
load more comments
view more: next ›
this post was submitted on 30 Sep 2024
913 points (94.3% liked)

linuxmemes

21282 readers
1115 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!


    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 fork-bomb your computer.

    founded 2 years ago
    MODERATORS