-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathincsearch.txt
615 lines (518 loc) · 21.8 KB
/
incsearch.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
*incsearch.txt* Incrementally highlight all pattern matches
Author : haya14busa <[email protected]>
Version : 1.0.3
License : MIT license {{{
Copyright (c) 2014-2015 haya14busa
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
}}}
CONTENTS *incsearch-contents*
Introduction |incsearch-introduction|
Install |incsearch-install|
Usage |incsearch-usage|
Basic usage |incsearch-basic-usage|
Additional usage |incsearch-additional-usage|
Command line interface |incsearch-commandline-interface|
Highlight |incsearch-highlight|
AUTOCMD |incsearch-autocmd|
API |incsearch-api|
Known Issues |incsearch-known-issues|
ChangeLog |incsearch-changelog|
==============================================================================
INTRODUCTION *incsearch-introduction*
*incsearch.vim* provides incremental highlighting for __ALL__ pattern
matches unlike default 'incsearch'.
You can use incsearch.vim as improved versions of |/| & |?|.
==============================================================================
INSTALL *incsearch-install*
Install with your favorite plugin managers like NeoBundle/Plugin/Plug
>
NeoBundle 'haya14busa/incsearch.vim'
Plugin 'haya14busa/incsearch.vim'
Plug 'haya14busa/incsearch.vim'
<
==============================================================================
USAGE *incsearch-usage*
------------------------------------------------------------------------------
Basic usage~
*incsearch-basic-usage*
*<Plug>(incsearch-forward)*
*<Plug>(incsearch-backward)*
*<Plug>(incsearch-stay)*
Write following lines to your vimrc:
>
map / <Plug>(incsearch-forward)
map ? <Plug>(incsearch-backward)
map g/ <Plug>(incsearch-stay)
<
<Plug>(incsearch-forward): Incremental searching forward
<Plug>(incsearch-backward): Incremental searching backward
<Plug>(incsearch-stay): It doesn't move the cursor unless you
explicitly use cursor move commands during
incremental search.
------------------------------------------------------------------------------
Additional usage~
*incsearch-additional-usage*
*g:incsearch#auto_nohlsearch*
<Plug>(incsearch-nohl) *<Plug>(incsearch-nohl)*
<Plug>(incsearch-nohl0) *<Plug>(incsearch-nohl0)*
<Plug>(incsearch-nohl-n) *<Plug>(incsearch-nohl-n)*
<Plug>(incsearch-nohl-N) *<Plug>(incsearch-nohl-N)*
<Plug>(incsearch-nohl-*) *<Plug>(incsearch-nohl-star)*
<Plug>(incsearch-nohl-#) *<Plug>(incsearch-nohl-#)*
<Plug>(incsearch-nohl-g*) *<Plug>(incsearch-nohl-gstar)*
<Plug>(incsearch-nohl-g#) *<Plug>(incsearch-nohl-g#)*
Let's farewell to this kind of mappings! >
nnoremap <Esc><Esc> :<C-u>nohlsearch<CR>
<
If you set |g:incsearch#auto_nohlsearch| to 1 (default: 0) and use
above mappings, 'hlsearch' will be __automatically__ turned off
after the cursor move. Example:
>
set hlsearch
let g:incsearch#auto_nohlsearch = 1
map n <Plug>(incsearch-nohl-n)
map N <Plug>(incsearch-nohl-N)
map * <Plug>(incsearch-nohl-*)
map # <Plug>(incsearch-nohl-#)
map g* <Plug>(incsearch-nohl-g*)
map g# <Plug>(incsearch-nohl-g#)
<
NOTE: |<Plug>(incsearch-nohl-n)| stuff are just aliases to
`<Plug>(incsearch-nohl)n` except |n| doesn't get remapped, so the
basic behaviour is completely same as the default one.
If you want to use this feature with other search related plugins, use
|<Plug>(incsearch-nohl)|.
Please make sure to place |<Plug>(incsearch-nohl)| before the cursor
moving mappings. |<Plug>(incsearch-nohl0)| handles search enhancement
mappings without |CursorMoved| event.
Working with |anzu.txt| example:
https://github.com/osyo-manga/vim-anzu
>
map n <Plug>(incsearch-nohl)<Plug>(anzu-n-with-echo)
map N <Plug>(incsearch-nohl)<Plug>(anzu-N-with-echo)
<
Working with |asterisk.txt| example:
https://github.com/haya14busa/vim-asterisk
>
map * <Plug>(incsearch-nohl)<Plug>(asterisk-*)
map g* <Plug>(incsearch-nohl)<Plug>(asterisk-g*)
map # <Plug>(incsearch-nohl)<Plug>(asterisk-#)
map g# <Plug>(incsearch-nohl)<Plug>(asterisk-g#)
map z* <Plug>(incsearch-nohl0)<Plug>(asterisk-z*)
map gz* <Plug>(incsearch-nohl0)<Plug>(asterisk-gz*)
map z# <Plug>(incsearch-nohl0)<Plug>(asterisk-z#)
map gz# <Plug>(incsearch-nohl0)<Plug>(asterisk-gz#)
<
*g:incsearch#consistent_n_direction*
If you set this option to 1, |n| and |N| directions are always forward
and backward respectively even after performing
|<Plug>(incsearch-backward)| which is improved motion of |?|.
>
let g:incsearch#consistent_n_direction = 1
<
default: 0
*g:incsearch#do_not_save_error_message_history*
If you set this option to 1, error and warning messages with search
command don't save into |message-history|.
|message-history| doesn't be messed up with some unneeded error and
warning messages like |E486| ,`search hit BOTTOM, continuing at TOP`
warning, and so on. Welcome clean |message-history|!
>
let g:incsearch#do_not_save_error_message_history = 1
<
default: 0
Improved 'magic' option~
*g:incsearch#magic*
This is improved 'magic' option. Also see: |/magic|
By default 'magic' option, all you can set is 'magic' or 'nomagic',
and in addition, default option has porability problem. see: 'magic'
In contrast to default 'magic' option, |g:incsearch#magic| enable
you to set 'very magic' |\v| and 'very nomagic' |\V| in adition to
'magic' |\m| and 'nomagic' |\M|.
This option doesn't cause porability problems, so you need not worry
about this problem. No other pattern related programs are affected by
this option.
Usage: >
let g:incsearch#magic = '\v' " very magic
let g:incsearch#magic = '\V' " very nomagic
let g:incsearch#magic = '\m' " magic
let g:incsearch#magic = '\M' " nomagic
<
default: ''
Smart backward word~
*g:incsearch#smart_backward_word*
If this option is set to 1, the backward word detection which is used
when |c_Ctrl-w| and |c_CTRL-R_CTRL-W| become smart. Smart backward
word doesn't include unexpected reglular expression and treats regular
expression flag as one word. For example, when the command line is
`/\vword` and type <C-w>, the vim default command line will become
`/\`, but since |\v| is not the part of word but just a regular
expression flag, it's useful not to include 'v' as a backward word.
This option fix this problem.
default: 1
------------------------------------------------------------------------------
Command line interface~
*incsearch-commandline-interface*
:IncSearchNoreMap {lhs} {rhs} *:IncSearchNoreMap*
Map the key sequence {lhs} to {rhs} for the |incsearch.vim| command
line interface. This command doesn't load while loading your vimrc,
so please call by |VimEnter| or |neobundle-hooks-on_post_source| if
you use |NeoBundle|.
*<Over>(incsearch-next)*
*<Over>(incsearch-prev)*
Emacs-like incsearch: move the cursor while incremental searching.
If the pattern in the command-line is empty, it works like
|last-pattern|
<Over>(incsearch-next) : to the next match. default: <Tab>
<Over>(incsearch-prev) : to the prev match. default: <S-Tab>
*<Over>(incsearch-scroll-f)*
*<Over>(incsearch-scroll-b)*
Scroll-like feature while incremental searching.
<Over>(incsearch-scroll-f) : scroll to the next page match.
default: <C-j>
<Over>(incsearch-scroll-b) : scroll to the previous page match.
default: <C-k>
NOTE: if you want to use |digraphs| feature, please overwrite
<C-k> or map another key to <C-k> like this. >
IncSearchNoreMap <C-k> <C-k>
<
Example:
>
augroup incsearch-keymap
autocmd!
autocmd VimEnter * call s:incsearch_keymap()
augroup END
function! s:incsearch_keymap()
IncSearchNoreMap <Right> <Over>(incsearch-next)
IncSearchNoreMap <Left> <Over>(incsearch-prev)
IncSearchNoreMap <Down> <Over>(incsearch-scroll-f)
IncSearchNoreMap <Up> <Over>(incsearch-scroll-b)
endfunction
<
*g:incsearch#vim_cmdline_keymap*
Apply vim default |:cnoremap| and |:cmap| mappings to custom command line
interface of |incsearch.vim|. |:IncSearchNoreMap| has higher priority
than :cnoremap and :cmap mappings
default: 1
*g:incsearch#emacs_like_keymap*
It enables Emacs-like keymappings if you set
|g:incsearch#emacs_like_keymap| to 1. default: 0
Emacs-like keymapping table~
{lhs} | {rhs}
-------|----------
<C-f> | |<Right>|
<C-b> | |<Left>|
<C-n> | |<Down>|
<C-p> | |<Up>|
<C-a> | |<Home>|
<C-e> | |<End>|
<C-d> | |<Del>|
<A-d> | |<C-w>|
Buffer completion *incsearch-<Over>(buffer-complete)*
*incsearch-<Over>(buffer-complete-prev)*
Completion with the buffer text.
<Over>(buffer-complete)
start buffer text completion. default: <C-l>
<Over>(buffer-complete-prev)
start buffer text completion to backward direction.
<Right>
select next candidate while completion
<Left>
select candidate while completion
Example: >
augroup incsearch-keymap
autocmd!
autocmd VimEnter * call s:incsearch_keymap()
augroup END
function! s:incsearch_keymap()
IncSearchNoreMap <Tab> <Over>(buffer-complete)
IncSearchNoreMap <S-Tab> <Over>(buffer-complete-prev)
endfunction
<
------------------------------------------------------------------------------
Highlight ~
*incsearch-highlight*
*g:incsearch#separate_highlight*
Highlight matched pattern separately with forward matches and
backward matches.
>
let g:incsearch#separate_highlight = 1
<
default: 0
Highlight Group ~
*incsearch-highlight-group*
| highlight group | description |
| ------------------- | --------------------------------------------- |
| *IncSearchMatch* | For all matched pattern. default: `Search` |
| *IncSearchMatchReverse* | For all matched pattern in reverse direction, |
| | if |g:incsearch#separate_highlight| is on. |
| | default: `IncSearch` |
| *IncSearchOnCursor* | For the matched pattern on the cursor. |
| | default: `IncSearch` |
| *IncSearchCursor* | For cursor position. default: `Cursor` |
| *IncSearchUnderline* | It's not used by default. For the customization |
Customize highlight ~
Change cursor color to red
Example: >
highlight IncSearchCursor ctermfg=0 ctermbg=9 guifg=#000000 guibg=#FF0000
<
*g:incsearch#highlight*
or use the |g:incsearch#highlight| option.
Example: >
let g:incsearch#highlight = {
\ 'match' : {
\ 'group' : 'IncSearchUnderline',
\ 'priority' : '10'
\ },
\ 'on_cursor' : {
\ 'priority' : '100'
\ },
\ 'cursor' : {
\ 'group' : 'ErrorMsg',
\ 'priority' : '1000'
\ }
\ }
<
*g:incsearch#no_inc_hlsearch*
Use 'hlsearch' incrementally to highlight matched patterns including
patterns in the other windows. The highlight of |IncSearchMatch| have
higher priority than 'hlsearch' in the current window but it doesn't
applied to other windows right now. If you do not want to highlight
with 'hlsearch', turn on this variable. >
let g:incsearch#no_inc_hlsearch = 1
< default: 0
------------------------------------------------------------------------------
AUTOCMD ~
*incsearch-autocmd*
|incsearch.vim| triggers those following |User| |autocmd|.
Name triggered by ~
IncSearchEnter triggered when you enter the command line
IncSearchLeave triggered when you leave the command line
IncSearchExecutePre triggered before a command execution
IncSearchExecute triggered after a command execution
IncSearchCharPre triggered before every character insertion
IncSearchChar triggered after every character insertion
NOTE:
incsearch.vim uses |:map-<expr>| for operator-pending mappings, so the
same restriction apply to your defined autocmd for operator-pending.
==============================================================================
API *incsearch-api*
incsearch.vim's API. It may changes because it's EXPERIMENTAL but I
try to keep it as much as possible.
------------------------------------------------------------------------------
Functions ~
*incsearch-functions*
incsearch#go([{config}]) *incsearch#go()*
Starts incsearch.vim's search interface. It assumes called by <expr>
mappings. It doesn't work nicely if you call it directly, so if you
want to call from command-line, use |incsearch#call()|. It returns
command to execute search, but you have no need to execute it to move
cursor because it's handled by <expr> mapping.
See |incsearch-config| for available configuration.
Example: >
noremap <expr> z/ incsearch#go()
noremap <expr> z? incsearch#go({'command': '?'})
noremap <expr> <Space>/ incsearch#go({'pattern': histget('/', -1)})
incsearch#call([{config}]) *incsearch#call()*
Starts incsearch.vim's search interface with function call. If you
want to create mapping to start incsearch.vim's search interface,
please use |incsearch#go()|. It returns primitive command to execute
search, but you have no need to execute it explicitly because calling
this function already move the cursor to destination.
See |incsearch-config| for available configuration.
Example: >
:call incsearch#call()
:call incsearch#call({'command': '?'})
:call incsearch#call({'pattern': histget('/', -1)})
incsearch#cli() *incsearch#cli()*
Returns current |Vital.Over.Commandline-object|.
------------------------------------------------------------------------------
Config ~
*incsearch-config*
Here are available configurations you can specify to call
incsearch.vim's search interface like |incsearch#go()| and
|incsearch#call()|.
command *incsearch-config-command*
Search command to use. You can use |/| or |?|.
Type: |string|
Default: '/'
Example: >
noremap <expr> z? incsearch#go({'command': '?'})
is_stay *incsearch-config-is_stay*
Boolean option for stay feature |<Plug>(incsearch-stay)|.
If you set this option to 1, the cursor will not move while
incremental searching unless you explicitly move it.
Type: boolean (0 or 1)
Default: false (0)
Example: >
noremap <expr> g/ incsearch#go({'is_stay': 1})
is_expr *incsearch-config-is_expr*
Boolean option for calling main function with <expr> state or
not. This value is turned on by default for
|Operator-pending-mode| to support dot-repeat(|.|) without any
additional library. But <expr> has a constraint like
|textlock| and moving cursor etc... see |:map-<expr>| for
detail. So if you want to avoid these constraint, turn off
this value explicitly. As for the dot-repeat(|.|) handling, if
vim-repeat[1] is installed, use it to handle dot-repeat(|.|).
[1]:
- https://github.com/tpope/vim-repeat
- https://github.com/kana/vim-repeat
Type: boolean (0 or 1)
Default: false (0) or true (1) for |Operator-pending-mode|
Example: >
noremap <expr> z/ incsearch#go({'is_expr': 0})
pattern *incsearch-config-pattern*
Default pattern to start incsearch.vim's search interface.
Type: |string|
Default: ''
Example: >
noremap <expr> <Space>/ incsearch#go({'pattern': histget('/', -1)})
modules *incsearch-config-modules*
Additional |Vital.Over.Commandline-modules| to connect.
Type: |list| of |Vital.Over.Commandline-modules|
Default: []
Example: >
let s:pcount = {'name': 'PromptCount'}
function! s:pcount.on_char(cmdline) abort
call a:cmdline.set_prompt(len(a:cmdline.getline()) . '/')
endfunction
function! s:config() abort
return {'modules': [s:pcount]}
endfunction
noremap <expr> z/ incsearch#go(<SID>config())
==============================================================================
KNOWN ISSUES *incsearch-issues*
Issues
https://github.com/haya14busa/incsearch.vim/issues
==============================================================================
CHANGELOG *incsearch-changelog*
Version 2.0(?) Roadmap~
2.0.0 1. Pattern converter feature
- https://github.com/haya14busa/incsearch.vim/tree/converter
- Implement fuzzy-search, migemo, spellcheck and other feature
- Make public pattern converter API for customization
- Write test for converer feature
3. More configurable options
- e.g. option for prompt format including right prompt feature
1.0.3 2015-05-03
1. Fix 'hlsearch' handling #74
1.0.2 2015-04-16
1. Implement experimental API (undocumented) to access vital-over
command line object
2. Add LiteralInsert module to insert special character literally
- e.g. <C-v><Tab> now inserts literal <Tab> and search them.
3. Add workaround pasting issue for MacVim #35
4. Fix to redraw commandline when leaving with <Esc> #67
5. Fix <SID> handling for <expr> mappings #51
6. Fix flicker at entering incsearch's commands #73
1.0.1 2015-01-04
1. Fix keymapping escape
2. Fix |last-pattern| with |g:incsearch#magic|
Version 1.0~
1.0.0 2014-12-14
1. Improve compatibility with default commandline behavior
- Automatically apply mappings defined with |:cnoremap| and |:cmap|
See |g:incsearch#vim_cmdline_keymap|
- Support multi {lhs} and <expr> mappings
2. Support incremental highlighting in other windows.
- See |g:incsearch#no_inc_hlsearch|
3. Add |<Over>(buffer-complete-prev)|
4. Add |IncsearchExecute| event
5. Implement |:digraph| feature
6. Fix minor problems.
0.9.9 2014-11-17
1. Smart backward word feature. See: |g:incsearch#smart_backward_word|
2. Implement |g:incsearch#vim_cmdline_keymap| option which apply
mappings defined with |:cmap| and |:cnoremap| to custome command line
interface of incsearch.vim
3. Do not highlight annoying patterns which matches everything like
`\v`, `vim\|`, etc..
4. Interactive module management (e.g. |g:incsearch#emacs_like_keymap|)
6. Fix |c_<C-r>_<C-w>| behavoir to be compatible with default one
7. Fix cancel behavior
8. Fix & improve {rhs} handling (after exit mappings, <C-r>=, etc...)
9. Fix minor problems
0.9.8 2014-10-25
1. Handle |last-pattern| incrementally. See: |<Over>(incsearch-next)|
2. Now |c_Ctrl-p| and |c_Ctrl-n| works by default and fix history
behavior to be compatible with default one
3. Fix 'smartcase' flag detection to work with like |\%V| and
repetitive escaped uppercase character like `\V\V`
0.9.7 2014-10-21
1. Minor update. Fix <C-c> interruption, use |\m| instead of |\M|, doc
fix.
0.9.6 2014-10-18
1. Implement improved 'magic' option feature. See: |g:incsearch#magic|
2. Improve highlight option to see the cursor position clearly
- ref: |incsearch-highlight-group|
3. Fix to use |keeppattern|, handle |jumplist| for stay search, and
catch some errors while searching.
4. vim.org debut, yeah!
0.9.5 2014-10-10
1. Implement automatic |:nohlsearch| feature.
- |:nohlsearch| will be called when cursor move after search
execution
- See: |g:incsearch#auto_nohlsearch|
2. Fix case handling with explicit |\C| flag
3. Fix 'hlsearch' handling
4. Fix 'nowrapscan' handling
5. CI with |vimlint.txt|
0.9.4 2014-10-01
1. Improve cursor position while incremental searching
- Now you can see cursor position working with |{offset}| unlike
default 'incsearch'
2. Fix and improve visual selection while incremental searching
3. Fix to ignore search related errors while searching
4. Handle unfolding after search execution
5. Cover more test cases
6. Start CI on windows with AppVeyor in addition to travis
0.9.3 2014-09-28
1. Do not use |:map-<expr>| for normal and visual mode mappings.
- Still use <expr> for operator-pending mappings to support |.|
(dot) repeat without depending on other repeat extention like
vim-repeat
- This change avoid flickering after search and support |:normal|
for |incsearch-autocmd|
2. Implement |g:incsearch#consistent_n_direction|
3. Implement |g:incsearch#do_not_save_error_message_history|
4. Improve stability. More comprehensive testing!
5. Improve scroll feature while searching.
- see: |<Over>(incsearch-scroll-f)| for scroll feature
6. Fix to use given |registers| with |quote| (")
7. Improve and fix some problems
0.9.2 2014-08-25
1. Add test
2. Minor fix: history emulation with |<Plug>(incsearch-stay)|
3. Improve pseud-visual highlight: consider curswant for |visual-block|
4. Minor performance improvement: do not always generate direction
specific patterns
0.9.1 2014-08-15
1. Fix visual highlight
2. Improve cursor moving
- Now, you can move the cursor to the reverse direction
- Scroll-like feature |<Over>(incsearch-scroll-f)| &
|<Over>(incsearch-scroll-b)|
- Handle |wrapscan| option
- Enable cursor moving while |<Plug>(incsearch-stay)|
3. Implement |g:incsearch#separate_highlight| option
0.9.0 2014-08-09
- Init.
1. Incremental highlight for all matched pattern
2. Cursor move while incremental searching like emacs
vim:tw=78:ts=8:ft=help:norl:noet:fen:fdl=0:fdm=marker: