Vim基础教程
一、简介
世界上只有三种编辑器,EMACS、VIM和其它.
我们所处的时代是非常幸运的,有越来越多的编辑器,相对于古老的VIM和EMACS,它们被称为现代编辑器。我们来看看这两个古董有多大年纪了:
**EMACS** : ~ = 38岁
**VI** : ~ = 37岁
**VIM** : ~ = 22岁
简单列举一下程序员期望使用的编辑拥有的功能:
轻量级,迅速启动(相对于IDE)
语法高亮
自动对齐
代码折叠
自动补全
显示行号
重定义Tab
十六进制编辑
列编辑模式
快速注释
高级搜索,替代
错误恢复
迅速跳转
Mark
美观
Vim包含了上面列的所有现代编辑器的优点,并且远远多于此,比如:
无止尽的扩展:现在VIM的官方网站上已经有了4704个扩展,并且在不断增加…
完美的跨平台:
开源
用起来很酷
最关键的,$
二、vimtutor
VIM自带的vimtutor是最好的Vim入门教程,只需半个小时左右的时间,就可以掌握Vim的绝大部分用法,教程如下:
===============================================================================
= W e l c o m e t o t h e V I M T u t o r - Version 1.7 =
=============================================================================== Vim is a very powerful editor that has many commands, too many to
explain in a tutor such as this. This tutor is designed to describe
enough of the commands that you will be able to easily use Vim as
an all-purpose editor. The approximate time required to complete the tutor is - minutes,
depending upon how much time is spent with experimentation. ATTENTION:
The commands in the lessons will modify the text. Make a copy of this
file to practise on (if you started "vimtutor" this is already a copy). It is important to remember that this tutor is set up to teach by
use. That means that you need to execute the commands to learn them
properly. If you only read the text, you will forget the commands! Now, make sure that your Shift-Lock key is NOT depressed and press
the j key enough times to move the cursor so that Lesson 1.1
completely fills the screen.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.1: MOVING THE CURSOR ** To move the cursor, press the h,j,k,l keys as indicated. **
^
k Hint: The h key is at the left and moves left.
< h l > The l key is at the right and moves right.
j The j key looks like a down arrow.
v
. Move the cursor around the screen until you are comfortable. . Hold down the down key (j) until it repeats.
Now you know how to move to the next lesson. . Using the down key, move to Lesson 1.2. NOTE: If you are ever unsure about something you typed, press <ESC> to place
you in Normal mode. Then retype the command you wanted. NOTE: The cursor keys should also work. But using hjkl you will be able to
move around much faster, once you get used to it. Really! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.2: EXITING VIM !! NOTE: Before executing any of the steps below, read this entire lesson!! . Press the <ESC> key (to make sure you are in Normal mode). . Type: :q! <ENTER>.
This exits the editor, DISCARDING any changes you have made. . When you see the shell prompt, type the command that got you into this
tutor. That would be: vimtutor <ENTER> . If you have these steps memorized and are confident, execute steps
through to exit and re-enter the editor. NOTE: :q! <ENTER> discards any changes you made. In a few lessons you
will learn how to save the changes to a file. . Move the cursor down to Lesson 1.3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.3: TEXT EDITING - DELETION ** Press x to delete the character under the cursor. ** . Move the cursor to the line below marked --->. . To fix the errors, move the cursor until it is on top of the
character to be deleted. . Press the x key to delete the unwanted character. . Repeat steps through until the sentence is correct. ---> The ccow jumpedd ovverr thhe mooon. . Now that the line is correct, go on to Lesson 1.4. NOTE: As you go through this tutor, do not try to memorize, learn by usage. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.4: TEXT EDITING - INSERTION ** Press i to insert text. ** . Move the cursor to the first line below marked --->. . To make the first line the same as the second, move the cursor on top
of the first character AFTER where the text is to be inserted. . Press i and type in the necessary additions. . As each error is fixed press <ESC> to return to Normal mode.
Repeat steps through to correct the sentence. ---> There is text misng this .
---> There is some text missing from this line. . When you are comfortable inserting text move to lesson 1.5. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.5: TEXT EDITING - APPENDING ** Press A to append text. ** . Move the cursor to the first line below marked --->.
It does not matter on what character the cursor is in that line. . Press A and type in the necessary additions. . As the text has been appended press <ESC> to return to Normal mode. . Move the cursor to the second line marked ---> and repeat
steps and to correct this sentence. ---> There is some text missing from th
There is some text missing from this line.
---> There is also some text miss
There is also some text missing here. . When you are comfortable appending text move to lesson 1.6. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1.6: EDITING A FILE ** Use :wq to save a file and exit. ** !! NOTE: Before executing any of the steps below, read this entire lesson!! . Exit this tutor as you did in lesson 1.2: :q!
Or, if you have access to another terminal, do the following there. . At the shell prompt type this command: vim tutor <ENTER>
'vim' is the command to start the Vim editor, 'tutor' is the name of the
file you wish to edit. Use a file that may be changed. . Insert and delete text as you learned in the previous lessons. . Save the file with changes and exit Vim with: :wq <ENTER> . If you have quit vimtutor in step restart the vimtutor and move down to
the following summary. . After reading the above steps and understanding them: do it. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 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 <ENTER> . To exit Vim type: <ESC> :q! <ENTER> to trash all changes.
OR type: <ESC> :wq <ENTER> to save the changes. . To delete the character at the cursor type: x . To insert or append text type:
i type inserted text <ESC> insert before the cursor
A type appended text <ESC> append after the line NOTE: Pressing <ESC> will place you in Normal mode or will cancel
an unwanted and partially completed command. Now continue with Lesson . ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.1: DELETION COMMANDS ** Type dw to delete a word. ** . Press <ESC> to make sure you are in Normal mode. . Move the cursor to the line below marked --->. . Move the cursor to the beginning of a word that needs to be deleted. . Type dw to make the word disappear. NOTE: The letter d will appear on the last line of the screen as you type
it. Vim is waiting for you to type w . If you see another character
than d you typed something wrong; press <ESC> and start over. ---> There are a some words fun that don't belong paper in this sentence. . Repeat steps and until the sentence is correct and go to Lesson 2.2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.2: MORE DELETION COMMANDS ** Type d$ to delete to the end of the line. ** . Press <ESC> to make sure you are in Normal mode. . Move the cursor to the line below marked --->. . Move the cursor to the end of the correct line (AFTER the first . ). . Type d$ to delete to the end of the line. ---> Somebody typed the end of this line twice. end of this line twice. . Move on to Lesson 2.3 to understand what is happening. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.3: ON OPERATORS AND MOTIONS Many commands that change text are made from an operator and a motion.
The format for a delete command with the d delete operator is as follows: d motion Where:
d - is the delete operator.
motion - is what the operator will operate on (listed below). A short list of motions:
w - until the start of the next word, EXCLUDING its first character.
e - to the end of the current word, INCLUDING the last character.
$ - to the end of the line, INCLUDING the last character. Thus typing de will delete from the cursor to the end of the word. NOTE: Pressing just the motion while in Normal mode without an operator will
move the cursor as specified. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.4: USING A COUNT FOR A MOTION ** Typing a number before a motion repeats it that many times. ** . Move the cursor to the start of the line marked ---> below. . Type 2w to move the cursor two words forward. . Type 3e to move the cursor to the end of the third word forward. . Type (zero) to move to the start of the line. . Repeat steps and with different numbers. ---> This is just a line with words you can move around in. . Move on to Lesson 2.5. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.5: USING A COUNT TO DELETE MORE ** Typing a number with an operator repeats it that many times. ** In the combination of the delete operator and a motion mentioned above you
insert a count before the motion to delete more:
d number motion . Move the cursor to the first UPPER CASE word in the line marked --->. . Type d2w to delete the two UPPER CASE words . Repeat steps and with a different count to delete the consecutive
UPPER CASE words with one command ---> this ABC DE line FGHI JK LMN OP of words is Q RS TUV cleaned up. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.6: OPERATING ON LINES ** Type dd to delete a whole line. ** Due to the frequency of whole line deletion, the designers of Vi decided
it would be easier to simply type two d's to delete a line. . Move the cursor to the second line in the phrase below.
. Type dd to delete the line.
. Now move to the fourth line.
. Type 2dd to delete two lines. ---> ) Roses are red,
---> ) Mud is fun,
---> ) Violets are blue,
---> ) I have a car,
---> ) Clocks tell time,
---> ) Sugar is sweet
---> ) And so are you. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 2.7: THE UNDO COMMAND ** Press u to undo the last commands, U to fix a whole line. ** . Move the cursor to the line below marked ---> and place it on the
first error.
. Type x to delete the first unwanted character.
. Now type u to undo the last command executed.
. This time fix all the errors on the line using the x command.
. Now type a capital U to return the line to its original state.
. Now type u a few times to undo the U and preceding commands.
. Now type CTRL-R (keeping CTRL key pressed while hitting R) a few times
to redo the commands (undo the undo's). ---> Fiix the errors oon thhis line and reeplace them witth undo. . These are very useful commands. Now move on to the Lesson Summary. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson SUMMARY . To delete from the cursor up to the next word type: dw
. To delete from the cursor to the end of a line type: d$
. To delete a whole line type: dd . To repeat a motion prepend it with a number: 2w
. The format for a change command is:
operator [number] motion
where:
operator - is what to do, such as d for delete
[number] - is an optional count to repeat the motion
motion - moves over the text to operate on, such as w (word),
$ (to the end of line), etc. . To move to the start of the line use a zero: . To 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.1: THE PUT COMMAND ** Type p to put previously deleted text after the cursor. ** . Move the cursor to the first ---> line below. . Type dd to delete the line and store it in a Vim register. . Move the cursor to the c) line, ABOVE where the deleted line should go. . Type p to put the line below the cursor. . Repeat steps through to put all the lines in correct order. ---> d) Can you learn too?
---> b) Violets are blue,
---> c) Intelligence is learned,
---> a) Roses are red, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.2: THE REPLACE COMMAND ** Type rx to replace the character at the cursor with x . ** . Move the cursor to the first line below marked --->. . Move the cursor so that it is on top of the first error. . Type r and then the character which should be there. . Repeat steps and until the first line is equal to the second one. ---> Whan this lime was tuoed in, someone presswd some wrojg keys!
---> When this line was typed in, someone pressed some wrong keys! . Now move on to Lesson 3.3. NOTE: Remember that you should be learning by doing, not memorization. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.3: THE CHANGE OPERATOR ** To change until the end of a word, type ce . ** . Move the cursor to the first line below marked --->. . Place the cursor on the u in lubw. . Type ce and the correct word (in this case, type ine ). . Press <ESC> and move to the next character that needs to be changed. . Repeat steps and until the first sentence is the same as the second. ---> This lubw has a few wptfd that mrrf changing usf the change operator.
---> This line has a few words that need changing using the change operator. Notice that ce deletes the word and places you in Insert mode. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 3.4: MORE CHANGES USING c ** The change operator is used with the same motions as delete. ** . The change operator works in the same way as delete. The format is: c [number] motion . The motions are the same, such as w (word) and $ (end of line). . Move to the first line below marked --->. . Move the cursor to the first error. . Type c$ and type the rest of the line like the second and press <ESC>. ---> The end of this line needs some help to make it like the second.
---> The end of this line needs to be corrected using the c$ command. NOTE: You can use the Backspace key to correct mistakes while typing. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 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 r and then the
character you want to have there. . The change operator allows you to change from the cursor to where the
motion takes you. eg. Type ce to 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 Now go on to the next lesson. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.1: CURSOR LOCATION AND FILE STATUS ** Type CTRL-G to show your location in the file and the file status.
Type G to move to a line in the file. ** NOTE: Read this entire lesson before executing any of the steps!! . Hold down the Ctrl key and press g . We call this CTRL-G.
A message will appear at the bottom of the page with the filename and the
position in the file. Remember the line number for Step . NOTE: You may see the cursor position in the lower right corner of the screen
This happens when the 'ruler' option is set (see :help 'ruler' ) . Press G to move you to the bottom of the file.
Type gg to move you to the start of the file. . Type the number of the line you were on and then G . This will
return you to the line you were on when you first pressed CTRL-G. . If you feel confident to do this, execute steps through . ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.2: THE SEARCH COMMAND ** Type / followed by a phrase to search for the phrase. ** . In Normal mode type the / character. Notice that it and the cursor
appear at the bottom of the screen as with the : command. . Now type 'errroor' <ENTER>. This is the word you want to search for. . To search for the same phrase again, simply type n .
To search for the same phrase in the opposite direction, type N . . To search for a phrase in the backward direction, use ? instead of / . . To go back to where you came from press CTRL-O (Keep Ctrl down while
pressing the letter o). Repeat to go back further. CTRL-I goes forward. ---> "errroor" is not the way to spell error; errroor is an error.
NOTE: When the search reaches the end of the file it will continue at the
start, unless the 'wrapscan' option has been reset. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.3: MATCHING PARENTHESES SEARCH ** Type % to find a matching ),], or } . ** . Place the cursor on any (, [, or { in the line below marked --->. . Now type the % character. . The cursor will move to the matching parenthesis or bracket. . Type % to move the cursor to the other matching bracket. . Move the cursor to another (,),[,],{ or } and see what % does. ---> This ( is a test line with ('s, ['s ] and {'s } in it. )) NOTE: This is very useful in debugging a program with unmatched parentheses! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 4.4: THE SUBSTITUTE COMMAND ** Type :s/old/new/g to substitute 'new' for 'old'. ** . Move the cursor to the line below marked --->. . Type :s/thee/the <ENTER> . Note that this command only changes the
first occurrence of "thee" in the line. . Now type :s/thee/the/g . Adding the g flag means to substitute
globally in the line, change all occurrences of "thee" in the line. ---> thee best time to see thee flowers is in thee spring. . To change every occurrence of a character string between two lines,
type :#,#s/old/new/g where #,# are the line numbers of the range
of lines where the substitution is to be done.
Type :%s/old/new/g to change every occurrence in the whole file.
Type :%s/old/new/gc to find every occurrence in the whole file,
with a prompt whether to substitute or not. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson SUMMARY . CTRL-G displays your location in the file and the file status.
G moves to the end of the file.
number G moves to that line number.
gg moves to the first line. . Typing / followed by a phrase searches FORWARD for the phrase.
Typing ? followed by a phrase searches BACKWARD for the phrase.
After a search type n to find the next occurrence in the same direction
or N to search in the opposite direction.
CTRL-O takes you back to older positions, CTRL-I to newer positions. . Typing % while the cursor is on a (,),[,],{, or } goes to its match. . To substitute new for the first old in a line type :s/old/new
To substitute new for all 'old's on a line type :s/old/new/g
To substitute phrases between two line #'s type :#,#s/old/new/g
To substitute all occurrences in the file type :%s/old/new/g
To ask for confirmation each time add 'c' :%s/old/new/gc ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.1: HOW TO EXECUTE AN EXTERNAL COMMAND ** Type :! followed by an external command to execute that command. ** . Type the familiar command : to set the cursor at the bottom of the
screen. This allows you to enter a command-line command. . Now type the ! (exclamation point) character. This allows you to
execute any external shell command. . As an example type ls following the ! and then hit <ENTER>. This
will show you a listing of your directory, just as if you were at the
shell prompt. Or use :!dir if ls doesn't work. NOTE: It is possible to execute any external command this way, also with
arguments. NOTE: All : commands must be finished by hitting <ENTER>
From here on we will not always mention it. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.2: MORE ON WRITING FILES ** To save the changes made to the text, type :w FILENAME. ** . Type :!dir or :!ls to get a listing of your directory.
You already know you must hit <ENTER> after this. . Choose a filename that does not exist yet, such as TEST. . Now type: :w TEST (where TEST is the filename you chose.) . This saves the whole file (the Vim Tutor) under the name TEST.
To verify this, type :!dir or :!ls again to see your directory. NOTE: If you were to exit Vim and start it again with vim TEST , the file
would be an exact copy of the tutor when you saved it. . Now remove the file by typing (MS-DOS): :!del TEST
or (Unix): :!rm TEST ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.3: SELECTING TEXT TO WRITE ** To save part of the file, type v motion :w FILENAME ** . Move the cursor to this line. . Press v and move the cursor to the fifth item below. Notice that the
text is highlighted. . Press the : character. At the bottom of the screen :'<,'> will appear. . Type w TEST , where TEST is a filename that does not exist yet. Verify
that you see :'<,'>w TEST before you press <ENTER>. . Vim will write the selected lines to the file TEST. Use :!dir or :!ls
to see it. Do not remove it yet! We will use it in the next lesson. NOTE: Pressing v starts Visual selection. You can move the cursor around
to make the selection bigger or smaller. Then you can use an operator
to do something with the text. For example, d deletes the text. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 5.4: RETRIEVING AND MERGING FILES ** To insert the contents of a file, type :r FILENAME ** . Place the cursor just above this line. NOTE: After executing Step you will see text from Lesson 5.3. Then move
DOWN to see this lesson again. . Now retrieve your TEST file using the command :r TEST where TEST is
the name of the file you used.
The file you retrieve is placed below the cursor line. . To verify that a file was retrieved, cursor back and notice that there
are now two copies of Lesson 5.3, the original and the file version. NOTE: You can also read the output of an external command. For example,
:r !ls reads the output of the ls command and puts it below the
cursor. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson SUMMARY . :!command executes an external command. Some useful examples are:
(MS-DOS) (Unix)
:!dir :!ls - shows a directory listing.
:!del FILENAME :!rm FILENAME - removes file FILENAME. . :w FILENAME writes the current Vim file to disk with name FILENAME. . v motion :w FILENAME saves the Visually selected lines in file
FILENAME. . :r FILENAME retrieves disk file FILENAME and puts it below the
cursor position. . :r !dir reads the output of the dir command and puts it below the
cursor position. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 6.1: THE OPEN COMMAND ** Type o to open a line below the cursor and place you in Insert mode. ** . Move the cursor to the line below marked --->. . Type the lowercase letter o to open up a line BELOW the cursor and place
you in Insert mode. . Now type some text and press <ESC> to exit Insert mode. ---> After typing o the cursor is placed on the open line in Insert mode. . To open up a line ABOVE the cursor, simply type a capital O , rather
than a lowercase o. Try this on the line below. ---> Open up a line above this by typing O while the cursor is on this line. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 6.2: THE APPEND COMMAND ** Type a to insert text AFTER the cursor. ** . Move the cursor to the start of the line below marked --->. . Press e until the cursor is on the end of li . . Type an a (lowercase) to append text AFTER the cursor. . Complete the word like the line below it. Press <ESC> to exit Insert
mode. . Use e to move to the next incomplete word and repeat steps and . ---> This li will allow you to pract appendi text to a line.
---> This line will allow you to practice appending text to a line. NOTE: a, i and A all go to the same Insert mode, the only difference is where
the characters are inserted. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 6.3: ANOTHER WAY TO REPLACE ** Type a capital R to replace more than one character. ** . Move the cursor to the first line below marked --->. Move the cursor to
the beginning of the first xxx . . Now press R and type the number below it in the second line, so that it
replaces the xxx . . Press <ESC> to leave Replace mode. Notice that the rest of the line
remains unmodified. . Repeat the steps to replace the remaining xxx. ---> Adding to xxx gives you xxx.
---> Adding to gives you . NOTE: Replace mode is like Insert mode, but every typed character deletes an
existing character. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 6.4: COPY AND PASTE TEXT ** Use the y operator to copy text and p to paste it ** . Go to the line marked with ---> below and place the cursor after "a)". . Start Visual mode with v and move the cursor to just before "first". . Type y to yank (copy) the highlighted text. . Move the cursor to the end of the next line: j$ . Type p to put (paste) the text. Then type: a second <ESC> . . Use Visual mode to select " item.", yank it with y , move to the end of
the next line with j$ and put the text there with p . ---> a) this is the first item.
b) NOTE: you can also use y as an operator; yw yanks one word.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 6.5: SET OPTION ** Set an option so a search or substitute ignores case ** . Search for 'ignore' by entering: /ignore <ENTER>
Repeat several times by pressing n . . Set the 'ic' (Ignore case) option by entering: :set ic . Now search for 'ignore' again by pressing n
Notice that Ignore and IGNORE are now also found. . Set the 'hlsearch' and 'incsearch' options: :set hls is . Now type the search command again and see what happens: /ignore <ENTER> . To disable ignoring case enter: :set noic NOTE: To remove the highlighting of matches enter: :nohlsearch
NOTE: If you want to ignore case for just one search command, use \c
in the phrase: /ignore\c <ENTER>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson SUMMARY . Type o to open a line BELOW the cursor and start Insert mode.
Type O to open a line ABOVE the cursor. . Type a to insert text AFTER the cursor.
Type A to insert text after the end of the line. . The e command moves to the end of a word. . The y operator yanks (copies) text, p puts (pastes) it. . Typing a capital R enters 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.1: GETTING HELP ** Use the on-line help system ** Vim has a comprehensive on-line help system. To get started, try one of
these three:
- press the <HELP> key (if you have one)
- press the <F1> key (if you have one)
- type :help <ENTER> Read the text in the help window to find out how the help works.
Type CTRL-W CTRL-W to jump from one window to another.
Type :q <ENTER> to close the help window. You can find help on just about any subject, by giving an argument to the
":help" command. Try these (don't forget pressing <ENTER>): :help w
:help c_CTRL-D
:help insert-index
:help user-manual
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 7.2: CREATE A STARTUP SCRIPT ** Enable Vim features ** Vim has many more features than Vi, but most of them are disabled by
default. To start using more features you have to create a "vimrc" file. . Start editing the "vimrc" file. This depends on your system:
:e ~/.vimrc for Unix
:e $VIM/_vimrc for MS-Windows . Now read the example "vimrc" file contents:
:r $VIMRUNTIME/vimrc_example.vim . Write the file with:
:w The next time you start Vim it will use syntax highlighting.
You can add all your preferred settings to this "vimrc" file.
For more information type :help vimrc-intro ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 7.3: COMPLETION ** Command line completion with CTRL-D and <TAB> ** . Make sure Vim is not in compatible mode: :set nocp . Look what files exist in the directory: :!ls or :!dir . Type the start of a command: :e . Press CTRL-D and Vim will show a list of commands that start with "e". . Press <TAB> and Vim will complete the command name to ":edit". . Now add a space and the start of an existing file name: :edit FIL . Press <TAB>. Vim will complete the name (if it is unique). NOTE: Completion works for many commands. Just try pressing CTRL-D and
<TAB>. It is especially useful for :help . ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson SUMMARY . Type :help or press <F1> or <Help> to open a help window. . Type :help cmd to find help on cmd . . Type CTRL-W CTRL-W to 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-D to see possible completions.
Press <TAB> to use one completion. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This concludes the Vim Tutor. It was intended to give a brief overview of
the Vim editor, just enough to allow you to use the editor fairly easily.
It is far from complete as Vim has many many more commands. Read the user
manual next: ":help user-manual". For further reading and studying, this book is recommended:
Vim - Vi Improved - by Steve Oualline
Publisher: New Riders
The first book completely dedicated to Vim. Especially useful for beginners.
There are many examples and pictures.
See http://iccf-holland.org/click5.html This book is older and more about Vi than Vim, but also recommended:
Learning the Vi Editor - by Linda La
Vim基础教程的更多相关文章
- Vim入门教程
尽管网上有成打的Vim在线教程,但是要么艰深晦涩,要么太过肤浅.本教程的目标让每个阶段都有斩获,从理解它的哲学(将和你终身相伴)到超越现在编辑技巧,成为其中的牛人. 简单来说,本教程的学习方式将使你终 ...
- Vim完全教程
一.简介 世界上只有三种编辑器,EMACS.VIM和其它. 我们所处的时代是非常幸运的,有越来越多的编辑器,相对于古老的VIM和EMACS,它们被称为现代编辑器.我们来看看这两个古董有多大年纪了: ...
- HBase入门基础教程之单机模式与伪分布式模式安装(转)
原文链接:HBase入门基础教程 在本篇文章中,我们将介绍Hbase的单机模式安装与伪分布式的安装方式,以及通过浏览器查看Hbase的用户界面.搭建HBase伪分布式环境的前提是我们已经搭建好了Had ...
- HBase入门基础教程 HBase之单机模式与伪分布式模式安装
在本篇文章中,我们将介绍Hbase的单机模式安装与伪分布式的安装方式,以及通过浏览器查看Hbase的用户界面.搭建HBase伪分布式环境的前提是我们已经搭建好了Hadoop完全分布式环境,搭建Hado ...
- 【HBase基础教程】1、HBase之单机模式与伪分布式模式安装(转)
在这篇blog中,我们将介绍Hbase的单机模式安装与伪分布式的安装方式,以及通过浏览器查看Hbase的用户界面.搭建hbase伪分布式环境的前提是我们已经搭建好了hadoop完全分布式环境,搭建ha ...
- PHP开发工具PHP基础教程
PHP开发 工具PHP基础教程,以下是兄弟连PHP培训小编整理: PHP IDE PHP IDE也不少,主要从几个方面进行筛选: 跨平台(能够同时在windows,mac或者ubuntu上面运 ...
- Termux基础教程(一):技能部署
Termux基础教程 by CUCI Termux 是一个 Android 下一个高级的终端模拟器,开源且不需要 root,支持 apt 管理软件包,十分方便安装软件包,完美支持 Python. PH ...
- vi, vim 使用教程
vim 使用教程 ```shcd lscd ../cd -pwdcprmmkdirtarmvmbtar -zcfchmodsshtopqfree ``` 数字0含空字符到行首,^不含空字符到行首.G移 ...
- Kafka基础教程(二):Kafka安装
因为kafka是基于Zookeeper的,而Zookeeper一般都是一个分布式的集群,尽管kafka有自带Zookeeper,但是一般不使用自带的,都是使用外部安装的,所以首先我们需要安装Zooke ...
随机推荐
- 学习MongoDB 八: MongoDB索引(索引限制条件)(二)
一.简介 我们上一篇介绍了索引基本操作,通过db.collection.createIndex(keys, options)语法创建索引,我们继续介绍地理空间索引.索引的限制,使我们在MongoDB时 ...
- web安全深度剖析 pdf
扫加公众号,回复“web安全深度剖析",免费获取此书.
- Python——连接操作数据库
1.安装MySQL驱动程序.下载自动安装包,双击安装即可,非常简单. 2.连接MySQL,下面是Python示例代码. import MySQLdbconn=MySQLdb.connect(host= ...
- JS修改属性,六种数据类型
JS修改属性 一般修改单个属性是通过JS修改的,比较方便.改多个属性通过css样式改更方便. 1.特殊:通过JS修改包含"-"符号的属性,例如margin-top // 特殊 修改 ...
- 扯皮的cplex-感觉时间不对
import ilog.cplex.CpxMult; import ilog.cplex.CpxNumExpr; import ilog.cplex.IloCplex; import ilog.con ...
- python入门-列表
列表使用[]来标识 列表和PHP中的数组类似 包括使用和访问方式都是类似 可以用下标索引的方式直接访问 来几个例子,这样看起来才舒服 names = ['baker','pitty','david', ...
- apache跨域图片配置
修改httpd.conf 1 找到 网站目录设置 <Directory "/var/www"> AllowOverride ALL # Allow open acces ...
- 2.登录linun 输入密码登录不进去 进入单用户模式 修改 然后reboot
centos进入单用户模式 单用户模式,就是你现在站在这台机器面前能干的活,再通俗点就是你能够接触到这个物理设备. 一般干这个活的话,基本上是系统出现严重故障或者其他的root密码忘记等等,单用户模式 ...
- Utils使用
获取两个时间之间的天数 var startDate = new Date(_startDate).getTime(); var endDate = new Date(_endDate).getTime ...
- Simple2D-24 Sprite 渲染树
如果要开发游戏,单单使用 Painter 绘制图片会变得十分复杂.如果使用 Sprite 对象进行显示,可以简单地实现图片的位移.旋转和缩放,结合 Action 对象可以实现复杂的动画效果.最重要的是 ...