Vim 9.0 has released

Ketut Artayasa
Sharing while learning
1 min readJun 30, 2022

--

vim

How to quit vim? Everyone who has used vim must knew this joke, actually this is a true story, even there are asked on quora. Vim is one of my favorite editor, mostly I used when I must edit a script remotely from my machine to remote machine, because it fast and I didn’t need to much to edit, I’m not a programmer.

Vim has released new version, glad to know that vim still in active project, this was a cool tool, although I not influence to use it, but it’s fun to use it, if you never use vim, you must try it.

before you try vim, you should know a few basic command bellow:

very basic simple vim command

  • vim — for opening the editor
  • press i — for inserting
  • :w — for saving
  • :qw — for quit with saving
  • :q!— for quit without saving
  • :smile you must try it too

--

--