updated vim cheatsheet

commands are entered with `:`, not `;`
This commit is contained in:
Quintus 2013-09-02 12:31:58 -04:00
parent 2a9220bb6d
commit 0f7fb2f7d1

View File

@ -5,4 +5,5 @@ i - enters append mode without character skip
# File management # File management
:w - writes (saves) file :w - writes (saves) file
:q - quits :q - quits
;q! - quits without saving changes :wq - writes file and quits
:q! - quits without saving changes