Update README.md

This commit is contained in:
Luke Stephens (hakluke) 2019-09-25 23:40:44 +10:00 committed by GitHub
parent e0807d4471
commit d6b9e28bb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
# how-to-exit-vim # How to exit vim
Below are some simple methods for exiting vim. Below are some simple methods for exiting vim.
## The simple way
``` ```
:!ps axuw | grep vim | grep -v grep | awk '{print $2}' | xargs kill -n :!ps axuw | grep vim | grep -v grep | awk '{print $2}' | xargs kill -n
``` ```