eregex.vim/README.markdown

54 lines
1.1 KiB
Markdown
Raw Normal View History

2010-10-15 22:49:29 +08:00
# eregex.vim
2010-10-15 23:21:53 +08:00
## Installation
2013-02-21 14:51:27 +08:00
Use [Vundle][] or [pathogen][] is suggested.
2010-10-15 23:21:53 +08:00
2013-02-21 14:51:27 +08:00
[Vundle]:https://github.com/gmarik/vundle
[pathogen]:https://github.com/tpope/vim-pathogen
2010-10-15 23:21:53 +08:00
2013-02-22 14:35:37 +08:00
## Quick Start
2010-10-15 23:21:53 +08:00
2013-02-22 00:17:06 +08:00
After installed. Just press / or ? for search, it will map to :M command.
2010-10-15 23:21:53 +08:00
2013-02-22 00:17:06 +08:00
You can call EregexToggle funtion to toggle the keymapping. For example,
add the following line into your .vimrc file:
2010-10-15 23:21:53 +08:00
2013-02-22 14:30:39 +08:00
nnoremap <leader>/ :call eregex#toggle()<CR>
2013-02-22 00:17:06 +08:00
2013-02-22 00:21:41 +08:00
Then you can use &lt;leader>/ to toggle eregex.vim.
2013-02-22 00:17:06 +08:00
For replacement, use :%S// (uppercase S) to use perl style regexp.
2010-10-15 23:21:53 +08:00
2013-02-22 14:35:37 +08:00
See `:help eregex` for more information.
## Config
Default disable, put this line in vimrc:
let g:eregex_default_enable = 0
2013-02-22 16:58:57 +08:00
Custom search delimeter:
2013-02-22 17:17:27 +08:00
let g:eregex_forward_delim = '/'
let g:eregex_backward_delim = '?'
2013-02-22 16:58:57 +08:00
2013-02-22 14:40:00 +08:00
## Changes
### 2.60
* Support backword search.
* Support count argument.
* Use function to auto map keys.
2013-02-22 17:30:37 +08:00
* Define custom search delimeter
2013-02-22 14:40:00 +08:00
2010-10-15 23:21:53 +08:00
## License
2010-10-15 22:50:38 +08:00
Author : 安久津
Origin : [eregex.vim][origin]
Maintainer : othree
2010-10-15 22:49:29 +08:00
2013-02-21 14:51:27 +08:00
`:help eregex-license-to-use` for license information.
2010-10-15 23:21:53 +08:00
2010-10-15 22:49:29 +08:00
[origin]:http://www.vector.co.jp/soft/unix/writing/se265654.html