Editors (Vim)
vimtutor
Lesson 1 SUMMARY
The cursor is moved using either the arrow keys or the hjkl keys.
h(left)j(down)k(up)l(right)
To start Vim from the shell prompt type: vim FILENAME
To exit Vim type:
:q!to trash all changes. OR type::wqto save the changes.
To delete the character at the cursor type:
xTo insert or append text type:
iinsert before the cursorAappend after the line
NOTE: Pressing <ESC> will place you in Normal mode or will cancel an unwanted and partially completed command.
Lesson 2 SUMMARY
To delete from the cursor up to the next word type:
dwTo delete from the cursor to the end of a line type:
d$To delete a whole line type:
ddTo repeat a motion prepend it with a number:
2wThe format for a change command is:
operator [number] motionwhere:
operator- is what to do, such asdfor delete[number]- is an optional count to repeat the motionmotion- moves over the text to operate on, such asw(word),$(to the end of line), etc.
To move to the start of the line use a zero:
0To undo previous actions, type:
u(lowercase u)To undo all the changes on a line, type:
U(capital U)To undo the undo's, type:
CTRL-R
Lesson 3 SUMMARY
To put back text that has just been deleted, type
p. This puts the deleted text AFTER the cursor (if a line was deleted it will go on the line below the cursor).To replace the character under the cursor, type
rand then the character you want to have there.The change operator allows you to change from the cursor to where the motion takes you. e.g. Type
ceto change from the cursor to the end of the word,c$to change to the end of a line.The format for change is:
c [number] motion
Lesson 4 SUMMARY
CTRL-Gdisplays your location in the file and the file status.Gmoves to the end of the file.number Gmoves to that line number.ggmoves to the first line.
After a search type
nto find the next occurrence in the same direction orNto search in the opposite direction.CTRL-Otakes you back to older positions,CTRL-Ito newer positions.Typing
/followed by a phrase searches FORWARD for the phrase.Typing
?followed by a phrase searches BACKWARD for the phrase.
Typing
%while the cursor is on a(,),[,],{, or}goes to its match.
Substitution
cmd
To substitute new for the first old in a line
:s/old/new
To substitute new for all 'old's on a line
:s/old/new/g
To substitute phrases between two line #'s
:#,#s/old/new/g
To substitute all occurrences in the file
:%s/old/new/g
To ask for confirmation each time add 'c'
:%s/old/new/gc
Lesson 5 SUMMARY
:!commandexecutes an external command.
Some useful examples are:
(Windows)
(Unix)
:!dir
:!ls
shows a directory listing
:!del FILENAME
:!rm FILENAME
removes file FILENAME
:wFILENAME writes the current Vim file to disk with name FILENAME.vmotion:w FILENAMEsaves the Visually selected lines in file FILENAME.:rFILENAME retrieves disk file FILENAME and puts it below the cursor position.:r !dirreads the output of thedircommand and puts it below the cursor position.
Lesson 6 SUMMARY
Type
oto open a line BELOW the cursor and start Insert mode.Type
Oto open a line ABOVE the cursor.Type
ato insert text AFTER the cursor.Type
Ato insert text after the end of the line.The
ecommand moves to the end of a word.The
yoperator yanks (copies) text,pputs (pastes) it.Typing a capital
Renters Replace mode until<ESC>is pressed.Typing ":set xxx" sets the option "xxx". Some options are:
'ic' 'ignorecase' ignore upper/lower case when searching
'is' 'incsearch' show partial matches for a search phrase
'hls' 'hlsearch' highlight all matching phrases
You can either use the long or the short option name.
Prepend "no" to switch an option off:
:set noic
Lesson 7 SUMMARY
Type
:helpor press<F1>or<HELP>to open a help window.Type
:help cmdto find help oncmd.Type
CTRL-W CTRL-Wto jump to another window.Type :q to close the help window.
Create a vimrc startup script to keep your preferred settings.
When typing a : command, press
CTRL-Dto see possible completions. Press<TAB>to use one completion.
Last updated
Was this helpful?