this post was submitted on 10 Dec 2023
579 points (95.9% liked)

linuxmemes

20717 readers
2973 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 

as I'm going through the process of learning vim, I'm discovering newfound powers. one of them being to execute commands from vim itself.

below examples might better explain some of them:

  1. want to see what files are in current directory? enter command mode(by typing :) and follow it by a bang(!). then do ls like you'd do in a terminal and press enter. this is not limited to just ls. you can enter any command that you can enter in terminal. for example: :! uname --operating-system (which will output GNU/Linux :))

  2. so you want to quickly save just a certain part of your file into another file? just select everything you need by entering visual mode(v) and do :w filename(actual command you'll see would be '<,'>:w filename). verify it using 1.(i.e., :! cat filename.

  3. want to quickly paste another file into current one? do :r filename. it'll paste its contents below your cursor.

  4. or maybe you want to paste results of a command? do :r !ls *.png.

vim is my ~ sweet ~ now. make it yours too.

you are viewing a single comment's thread
view the rest of the comments
[–] victorz@lemmy.world 7 points 9 months ago* (last edited 9 months ago) (2 children)

I'm personally a kakoune guy now. I used vim for over a decade, but kakoune just makes much more sense to me. And I thought vim made a lot of sense, too.

[–] cacheson@kbin.social 2 points 9 months ago (1 children)

Huh, I'm going to have to try that at some point. It's even got nim support.

Link for the lazy

[–] victorz@lemmy.world 1 points 9 months ago

Yeah baby! There's always someone who says that -- "huh, need to try that out sometime".

I really hope you do, it's always satisfying finding a tool that you enjoy more than the ones you've been using. 😊

[–] callyral@pawb.social 1 points 9 months ago (1 children)

i was wondering, could one customize vim to have kakoune keybindings? if so, has someone already done it

[–] victorz@lemmy.world 1 points 9 months ago

I'm thinking that would be more effort than simply installing the kakoune executable. If it's even possible, that is.