Introduction
VIM is a text editor for writing code, where you navigate around the screen with the Keyboard instead of a Mouse.
It is bas...
For further actions, you may consider blocking this person and/or reporting abuse
That's super concise, I like that :) you should continue to write about it.
I've written a guide to learn Vim too, but it's more verbose. If somebody is interested: thevaluable.dev/vim-beginner/
Thank you.
I just went through your link, it's explained very well, I loved it. Great efforts man!
I've been using Vim for over 20 years.
I haven't figured out how to quit yet.
Hey, I have explained it in article, but here’s the quick solution:
When you’re in normal mode, just press,
“:w” (save file)
“:q” (quit file. but the file must be saved first)
“:wq” (save and quit)
“:q!” (quit without saving)
I hope it will help you. Thanks.
You missed ZZ, which is far less keystrokes and which tolerates everything
If you would like to improve the appearance of vim, the Enfocado theme will be very useful. Excellent guide! 😃
GET IT ON |
github.com/wuelnerdotexe/vim-enfocado
Thanks. I'll surely try this theme 😀
Thanks, really handy!
Awesome writeup bro! Keep 'em coming
Thanks man!
dd will delete an entire line instead of a word right?
yeah.
also if you want to yank a entire line you can use yy
Yes, thanks for the correction.
This is so helpful for beginners!
Thank you :D