I’ve been using Vim since the first year I started coding. For all the IDEs/editors that I have used, the Vim plugin is always the very first plugin that I install.
I know that Vim can be challenging to work in for people who are not familiar with it. In this article, we’ll cover some fundamental topics like how to exit Vim, rather than quitting Vim.
I will also include the command that you can use to reveal the corresponding help documentation. To do that, first we need to press ESC
a few times, and run the command provided, for example, :h vim-modes
, and press Enter
.
:q
and press Enter/return:wq
and press Enter/return:q!
and press Enter/returnIf you want to understand in more detail how this works, let’s dive in.
#vim #developer