-
Notifications
You must be signed in to change notification settings - Fork 0
/
bling.txt
39 lines (31 loc) · 1.12 KB
/
bling.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
================================================================================
INTRODUCTION *bling.txt*
Bling.nvim blinks the current search result after jumping to it after using *,
#, n or N.
bling.setup({}) *bling.setup()*
Setup function to initialize the plugin.
>
require('highlight-annotate').setup({})
<
Replace {} with your options. See |bling-opts| for details.
opts *bling-opts*
>
opts = {
-- blink during macros
during_macros = false,
-- number of blinks to perform
count = 3,
-- delay for each blink
delay = 75,
map = {
-- on which search / repetition to blink
asterisk = true,
hash = true,
n = true,
N = true,
-- blink after searching using / or ?
cmd = false,
}
}
<
================================================================================