File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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:
You can’t perform that action at this time.
0 commit comments