Skip to content

Commit f6758ee

Browse files
committed
update
1 parent 7eb176a commit f6758ee

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@ A simple pairs plugin written in FP style using Lua.
77
install with any plugin manager or built-in package.
88

99
no setup function is used, fnpairs will work after loaded.
10-
below are default pairs list.
10+
11+
using `vim.g.fnpairs` add new pairs list. below is default
12+
paris list.
1113

1214
```lua
13-
-- BracketPair ADT
14-
local BracketPair = {
15-
match = {
15+
{
1616
['('] = ')',
1717
['['] = ']',
1818
['{'] = '}',
1919
['"'] = '"',
2020
["'"] = "'",
2121
['`'] = '`',
22-
},
2322
}
2423
```
2524

0 commit comments

Comments
 (0)