vim
Vim, and
Syntax
/pattern :%s/old/new/g
Parameters
| Parameters | Description | Examples | Level |
|---|---|---|---|
/pattern |
/function |
Common | |
?pattern |
?error |
Common | |
n/N |
/ | n |
Common |
:%s/old/new/g |
:%s/foo/bar/g |
Common | |
:%s/old/new/gc |
() | :%s/var/let/gc |
Common |
*/# |
(/) | * |
Advanced |
Examples
/TODO
n
:%s/oldName/newName/g
:10,20s/foo/bar/g
10-20
/\d\+\.\d\+
( 3.14)
Common Errors
E486: Pattern not found, ( /\cpattern )
:noh :nohlsearch
Tips
- \c, \C
- :%s %, :'<,'>s
- set hlsearch