2010-10-15 10:49:29 -04:00
|
|
|
# eregex.vim
|
|
|
|
|
2010-10-15 11:21:53 -04:00
|
|
|
## Installation
|
|
|
|
|
2010-10-18 00:57:45 -04:00
|
|
|
Vimball package will not release until English doc is ready.
|
2010-10-15 11:21:53 -04:00
|
|
|
Now you can clone this repo and use [vim-makefile][] to install.
|
|
|
|
|
|
|
|
[vim-makefile]:http://github.com/c9s/vim-makefile
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Add the following three lines to your vimrc file.
|
|
|
|
|
|
|
|
nnoremap / :M/
|
|
|
|
nnoremap ? :M?
|
|
|
|
nnoremap ,/ /
|
2010-10-18 00:57:45 -04:00
|
|
|
nnoremap ,? ?
|
2010-10-15 11:21:53 -04:00
|
|
|
|
|
|
|
Now you can use / to find. :%S// (uppercase S) to replace.
|
2010-10-18 00:57:45 -04:00
|
|
|
You can use ,/ to use the origin / .
|
2010-10-15 11:21:53 -04:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
2010-10-15 10:50:38 -04:00
|
|
|
Author : 安久津
|
|
|
|
Origin : [eregex.vim][origin]
|
|
|
|
Maintainer : othree
|
2010-10-15 10:49:29 -04:00
|
|
|
|
2010-10-15 11:21:53 -04:00
|
|
|
Might release under MIT License.
|
|
|
|
|
2010-10-15 10:49:29 -04:00
|
|
|
[origin]:http://www.vector.co.jp/soft/unix/writing/se265654.html
|