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 <