Differences between version 6 and revision by previous author of VimHowto.
Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History
Newer page: | version 6 | Last edited on Thursday, July 3, 2003 3:45:25 am | by MisterHyde | Revert |
Older page: | version 5 | Last edited on Friday, May 30, 2003 5:20:58 pm | by JohnMcPherson | Revert |
@@ -15,9 +15,9 @@
After leaving insert mode, Vim returns back to normal mode. The key to normal mode is the colon key, ':'. Pressing the colon key allows commands to be typed into Vim. Some simple commands follow:
:w[[rite] Write, or save the current file.
- :q[[uit] Quit Vim (will not exit of
there are unsaved changes)
+ :q[[uit] Quit Vim (will not exit if
there are unsaved changes)
:e[[dit] <file> Edit/load a new file.
:help <topic> Open up a help window displaying topic.
The above commands are usually just abbreviated ':w' and such, there isn't really any point in typing ':write'.