Answers for "vim reload file"

1

vim reload vimrc

:source ~/.vimrc
Posted by: Guest on October-23-2020
1

vim reload file

:e (short for :edit)
use :e! or :edit! to discard changes and reload
Posted by: Guest on May-26-2021
0

reload vim

:so %
is better if you are working on a plugin.
else:
:so <your vimrc path>
Posted by: Guest on October-27-2020
-1

vim reload file

The command you want is :e (short for :edit). If you use :edit! it will discard local changes and reload.
Posted by: Guest on May-26-2021

Browse Popular Code Answers by Language