From 94a4fa4b9ffec88ecd742fb077a66bf8cb9c4bf1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Dec 2021 22:34:15 +0000 Subject: [PATCH] chore: generated vimdoc --- doc/nvim-autopairs-rules.txt | 2 +- doc/nvim-autopairs.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/nvim-autopairs-rules.txt b/doc/nvim-autopairs-rules.txt index 4bb3ed8..6e4a572 100644 --- a/doc/nvim-autopairs-rules.txt +++ b/doc/nvim-autopairs-rules.txt @@ -74,7 +74,7 @@ CONDITION ~ │not_after_text(text) │check character after │ │not_before_regex(regex,length)│check character before with lua regex│ │not_after_regex(regex,length) │check character after with lua regex │ -│not_inside_quote() │check is inside a quote │ +│not_inside_quote() │check is not inside a quote │ │not_filetypes({table}) │check filetype is not inside table │ diff --git a/doc/nvim-autopairs.txt b/doc/nvim-autopairs.txt index 61c9809..f418b2e 100644 --- a/doc/nvim-autopairs.txt +++ b/doc/nvim-autopairs.txt @@ -31,6 +31,7 @@ DEFAULT VALUES *nvim-autopairs-default-values* local enable_check_bracket_line = true --- check bracket in same line local check_ts = false local map_bs = true -- map the key + local map_c_h = false -- Map the key to delete a pair local map_c_w = false -- map to delete a pair if possible <