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

linuxmemes

20761 readers
1691 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.

top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 0 points 9 months ago

Dangol modern Linux users, haven't even heard of Ed. Every text editor is bloat, ed is life!

[–] [email protected] 0 points 9 months ago

You can keep your vim. I am happy with my nano.

[–] [email protected] 0 points 9 months ago

I love these memes that turn into threads full of vim tips. You really can do anything within vim. You can even exit vim!: !killall vim

[–] [email protected] 0 points 9 months ago

It's like learning an instrument really. Just need to practice and eventually muscle memory will carry you

[–] [email protected] 0 points 9 months ago

I will not make vim my sweet as it is optimized for us keyboard. Most of the shortcuts are awful in my native (Finnish) layout. As much of a heretic I am, there is a place for mouse and windowing display managers.

What I do miss from the Redmont dystopia is Notepad++. Can do anything, can be explained over the phone.

[–] [email protected] 0 points 9 months ago

bonus point: if you like inception, do :term, press i and start another (n)vim session :)

[–] [email protected] 2 points 9 months ago* (last edited 9 months ago)

I love vim, but it wasn't always like this. When I was a Linux newbie one of the things that irritated me most is that tutorials aimed at beginners told readers to use vim, without explaining how to maneuver it. People, if you write tutorials aimed at beginners please use nano, even if it's not your preferred text editor.