updated vim notes

This commit is contained in:
tomit4 2021-10-08 06:08:59 -07:00
parent 5cfb538063
commit 3b413794ec

View file

@ -74,6 +74,10 @@ CTRL + F (Page Down)
:%s/word_to_replace/new_word/g
# Delete all blank lines:
g/^\s*$/d
# Running Bash Commands from within Vim:
:! <bash command>