Skip to content

Commit d548819

Browse files
chore(doc): auto generate docs
1 parent 9ee69d4 commit d548819

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

doc/fnpairs.nvim.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
*fnpairs.nvim.txt* For NVIM v0.8.0 Last change: 2025 February 04
2+
3+
==============================================================================
4+
Table of Contents *fnpairs.nvim-table-of-contents*
5+
6+
1. fnpairs.nvim |fnpairs.nvim-fnpairs.nvim|
7+
- License MIT |fnpairs.nvim-fnpairs.nvim-license-mit|
8+
9+
==============================================================================
10+
1. fnpairs.nvim *fnpairs.nvim-fnpairs.nvim*
11+
12+
A simple pairs plugin written in FP style using Lua.
13+
14+
>lua
15+
-- BracketPair ADT
16+
local BracketPair = {
17+
match = {
18+
['('] = ')',
19+
['['] = ']',
20+
['{'] = '}',
21+
['"'] = '"',
22+
["'"] = "'",
23+
['`'] = '`',
24+
},
25+
}
26+
<
27+
28+
29+
LICENSE MIT *fnpairs.nvim-fnpairs.nvim-license-mit*
30+
31+
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
32+
33+
vim:tw=78:ts=8:noet:ft=help:norl:

0 commit comments

Comments
 (0)