显然,这样在处理 “fourty” 的时候还是会出错。用 “\>” 来解决这个问题:
:%s/\/4/g
如果你在编码,你可能只想替换注释中的 “four”,而保留代码中的。由于这很难指定,可以在替换命令中加一个 “c” 标记,这样,Vim 会在每次替换前提示你:
:%s/\/4/gc
2,删除多余的空格
要删除这些每行后面多余的空格,可以执行如下命令:
:%s/\s\+$//
命令前面指明范围是 “%”,所以这会作用于整个文件。”substitute” 命令的匹配模式是
“\s\+$”。这表示行末($)前的一个或者多个(\+)空格(\s)。替换命令的 “to” 部分是空的:”//”。这样就会删除那些匹配的空白字符。
3,匹配重复性模式
星号项 “*” 规定在它前面的项可以重复任意次。因此:
/a*
匹配 “a”,”aa”,”aaa”,等等。但也匹配 “” (空字串),因为零次也包含在内。星号 “*”
仅仅应用于那个紧邻在它前面的项。因此 “ab*” 匹配
“a”,”ab”,”abb”,”abbb”,等等。如要多次重复整个字符串,那么该字符串必须被组成一个项。组成一项的方法就是在它前面加
“\(”,后面加 “\)”。因此这个命令:
/\(ab\)*
匹配: “ab”,”abab”,”ababab”,等等。而且也匹配 “”。
要避免匹配空字串,使用 “\+”。这表示前面一项可以被匹配一次或多次。
/ab\+
匹配 “ab”,”abb”,”abbb”,等等。它不匹配 后面没有跟随 “b” 的 “a”。
要匹配一个可选项,用 “\=”。 例如:
/folders\=
匹配 “folder” 和 “folders”。
4,指定重复次数
要匹配某一项的特定次数重复,使用 “\{n,m}” 这样的形式。其中 “n” 和 “m” 都是数字。在它前面的那个项将被重复 “n” 到 “m” 次 (|inclusive| 包含 “n” 和 “m”)。例如:
/ab\{3,5}
匹配 “abbb”,”abbbb” 以及 “abbbbb”。
当 “n” 省略时,被默认为零。当 “m” 省略时,被默认为无限大。当 “,m” 省略时,就表示重复正好 “n” 次。例如:
模式 匹配次数
\{,4} 0,1,2,3 或 4
\{3,} 3,4,5,等等
\{0,1} 0 或 1,同 \=
\{0,} 0 或 更多,同 *
\{1,} 1 或 更多,同 \+
\{3} 3
5,多选一匹配
在一个查找模式中,”或” 运算符是 “\|”。例如:
/foo\|bar
这个命令匹配了 “foo” 或 “bar”。更多的抉择可以连在后面:
/one\|two\|three
匹配 “one”,”two” 或 “three”。
如要匹配其多次重复,那么整个抉择结构须置于 “\(” 和 “\)” 之间:
/\(foo\|bar\)\+
这个命令匹配 “foo”,”foobar”,”foofoo”,”barfoobar”,等等。
再举个例子:
/end\(if\|while\|for\)
这个命令匹配 “endif”,”endwhile” 和 “endfor”。
匹配一个单词
替换命令可以在全文中用一个单词替换另一个单词:
:%s/four/4/g
“%” 范围前缀表示在所有行中执行替换。最后的 “g” 标记表示替换行中的所有匹配点。如果仅仅对当前行进行操作,那么只要去掉%即可
如果你有一个象 “thirtyfour” 这样的单词,上面的命令会出错。这种情况下,这个单词会被替换成”thirty4″。要解决这个问题,用 “\<” 来指定匹配单词开头:
:%s/\
显然,这样在处理 “fourty” 的时候还是会出错。用 “\>” 来解决这个问题:
:%s/\/4/g
如果你在编码,你可能只想替换注释中的 “four”,而保留代码中的。由于这很难指定,可以在替换命令中加一个 “c” 标记,这样, 会在每次替换前提示你:
:%s/\/4/gc
上下文相关替换
除了直接使用一个单词(或短语)替换另一个,还有稍微复杂的全局替换语法。这些语法可以对一个模式进行搜索,一旦找到含有模式的行,就可以使用不同与模式的串进行替换,我们把这种替换叫做上下文相关替换。
语法格式如下:
:g /pattern/s/old/new/g 将会把包含pattern的行中,把所有old替换为new
第一个g表示是在文件的所有行上执行的命令,模式pattern识别要发生替换的行。在那些包含模式pattern的行上,ex将把old替换(s)为new。最后的g表示在该行上进行全部替换。
如果用来进行搜索的模式与想要修改的模式相同,那么就不必重复它:
:g/string/s//new/g 等价于 :g/string/s/string/new/g
还要注意:
:g/string/s//new/g 也等价于 :%
s/string/new/g
可以用第二种方式少输一些字符
-
" When started as "evim", evim.vim will already have done these settings.
-
if v:progname =~? "evim"
-
finish
-
endif
-
-
" This must be first, because it changes other options as a side effect.
-
set nocompatible
-
-
" allow backspacing over everything in insert mode
-
set backspace=indent,eol,start
-
-
syntax on
-
set nobackup " do not keep a backup file, use versions instead
-
set nowritebackup " don't keep backup before overwriting
-
set hidden " can hide buffer
-
-
set cindent " always set autoindenting on
-
set cinoptions=:0,t0 " Don't indent CASE and Return Type
-
-
set incsearch " do incremental searching
-
set hlsearch " highlith match text
-
set ignorecase smartcase " case sensitive with capital
-
-
set history=50
-
set sm " match ()
-
set list
-
set listchars=tab:\.\ ,trail:\ " display as '. '
-
set ruler " show cursor position
-
set showcmd " show command in ruler
-
" set nowrap " no wrap newline
-
-
" Jump to last known curson position.
-
autocmd BufReadPost *
-
\ if line("'\"") > 0 && line("'\"") <= line("$") |
-
\ exe "normal! g`\"" |
-
\ endif
-
-
" Convenient command to see the difference between the current buffer and the
-
" file it was loaded from, thus the changes you made.
-
command Di vert new | set bt=nofile | r # | 0d_ | diffthis
-
\ | wincmd p | diffthis
-
-
" Command to reload the buffer
-
command Re let position = getpos(".") | %d | r | 1d | call setpos(".", position)
-
-
" vim -b : edit binary using xxd-format!
-
augroup Binary
-
au!
-
au BufReadPre *.bin let &bin=1
-
au BufReadPost *.bin if &bin | %!xxd
-
au BufReadPost *.bin set ft=xxd | endif
-
au BufWritePre *.bin if &bin | %!xxd -r
-
au BufWritePre *.bin endif
-
au BufWritePost *.bin if &bin | %!xxd
-
au BufWritePost *.bin set nomod | endif
-
augroup END
-
-
" Start key map
-
nmap gr :grep `find . -name '*.[chsS]'`
-
" nmap ,e :e =expand("%:p:h") . "/"
-
nmap ,e :e %
-
" nmap :call setreg('+', @*)
-
nmap :let @+=@*
-
vmap "+y
-
imap
-
imap
-
-
" map :source $VIMRUNTIME/folder.vim
-
map @@
-
map :!ctags -R .&
-
map ^xx
-
map ^i//
-
map ^i## /* for ASM */
-
map ^i%% /* for TeX */
-
" map :cs reset
-
" map :w:!if [ -f [Mm]akefile ]; then make xen >& /dev/null; fi
-
" map :w:!if [ -f [Mm]akefile ]; then make >& /dev/null; fi
-
" map :cc
-
" map :cn
-
map :w:make
-
" map :if (&hlsearch == 1) set nohlsearch else set hlsearch endif
-
-
set pastetoggle=
-
imap
-
imap
-
imap
-
imap
-
imap
-
imap
-
" imap
-
-
imap ``` printf("");
-
-
set nocsverb " suppress error
-
set cscopequickfix=s-,c-,d-,i-,t-,e-,g-
-
" set cscopequickfix=s-,t-
-
" cs add ~/tmp/cscope.out ~/tmp/src
-
" cs add ~/tmp/cscope.out
-
"cs add ~/wtos2/T10_check/WTOS_7.1.1_T10/src/cscope.out
-
" cs add ~/wtos2/WTOS_7.1.1_T10/src/io/xusb/cscope.out
-
cs add ~/wtos2/WTOS-main-check/WTOS-main/src/cscope.out
-
-
" map :cs find g =expand("")
-
" imap :cs find g =expand("")
-
nmap s :cs find s =expand("")
-
nmap g :cs find g =expand("")
-
nmap c :cs find c =expand("")
-
nmap t :cs find t =expand("")
-
nmap e :cs find e =expand("")
-
nmap f :cs find f =expand("")
-
nmap i :cs find i =expand("")
-
nmap d :cs find d =expand("")
-
-
" Using 'ESC' then a search type makes the vim window
-
" split horizontally, with search result displayed in
-
" the new window.
-
-
" map :scs find g =expand("")
-
" imap :scs find g =expand("")
-
nmap s :scs find s =expand("")
-
nmap g :scs find g =expand("")
-
nmap c :scs find c =expand("")
-
nmap t :scs find t =expand("")
-
nmap e :scs find e =expand("")
-
nmap f :scs find f =expand("")
-
nmap i :scs find i ^=expand("")$
-
nmap d :scs find d =expand("")
-
-
" Hitting 'ESC' *twice* before the search type does the serach
-
" with quickfix list
-
"
-
-
nmap s :set cscopequickfix+=s-:cs find s =expand(""):set cscopequickfix-=s-
-
nmap g :set cscopequickfix+=g-:cs find g =expand(""):set cscopequickfix-=g-
-
nmap c :set cscopequickfix+=c-:cs find c =expand(""):set cscopequickfix-=c-
-
nmap t :set cscopequickfix+=t-:cs find t =expand(""):set cscopequickfix-=t-
-
nmap e :set cscopequickfix+=e-:cs find e =expand(""):set cscopequickfix-=e-
-
nmap i :set cscopequickfix+=i-:cs find i ^=expand("")$:set cscopequickfixi=g-
-
nmap d :set cscopequickfix+=d-:cs find d =expand(""):set cscopequickfix-=d-
-
-
set csverb
-
set cst "search in both tags and cscope.out
-
set cspc=4 "display last 3 lines
-
-
" Don't use Ex mode
-
map Q
-
-
" This is an alternative that also works in block mode, but the deleted
-
" text is lost and it only works for putting the current register.
-
vnoremap P "_dP
-
-
" Switch syntax highlighting on, when the terminal has colors
-
" Also switch on highlighting the last used search pattern.
-
if &t_Co == 1
-
syntax off
-
set nohlsearch
-
endif
-
-
" Load vimgdb mapping
-
set splitright
-
set splitbelow
-
run macros/gdb_mappings.vim