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

linuxmemes

20741 readers
787 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
[–] Tau@sopuli.xyz 0 points 9 months ago (1 children)

The challenge now is escaping the neovim terminal

[–] noobdoomguy8658@feddit.de 0 points 9 months ago (1 children)

Ctrl+\ Ctrl+n gets you back to normal mode.

[–] Tau@sopuli.xyz 0 points 9 months ago (1 children)

But what do you do if you are not using a us keyboard?

[–] noobdoomguy8658@feddit.de 0 points 9 months ago

The layout is what matters for vim and it's derivatives. I might be wrong here, but if you really need to be able to use the same keybindings as you would on a English qwerty one, you could try remapping things to their addresses or whatever that's called - basically the same key, physically, regardless of its layout mapping.

That being said, it's vim, you can remap the command to get back to normal mode from terminal mode to whatever key or key sequence you like most.

Using mouse to scroll up and down your terminal window inside vim also gets you back to normal mode.

And, well, quitting the shell of your terminal in vim works just fine - either via command or hitting Ctrl+d.