diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 23:39:06 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 23:39:06 +0200 |
commit | f30f56c7297b0c27ea78d6f3bef1a049a56f553d (patch) | |
tree | 0185b0cc7c08a13b02f7bfa8ec404428f7ccdf34 /fnl/config/autopairs.fnl | |
parent | c713e546deca1f48a0d89980ff01191a50e8fcd2 (diff) |
fix(autopairs): escape "
Diffstat (limited to 'fnl/config/autopairs.fnl')
-rw-r--r-- | fnl/config/autopairs.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/config/autopairs.fnl b/fnl/config/autopairs.fnl index 8d7025c..994bbf1 100644 --- a/fnl/config/autopairs.fnl +++ b/fnl/config/autopairs.fnl @@ -13,8 +13,8 @@ :disable_filetype [ :TelescopePrompt :spectre_panel ] :fast_warp { :map "<M-e>" - :chars [ "{" "[" "(" '"' "'" ] - :pattern string.gsub([[ [%'%"%)%>%]%)%}%,] ]], "%s+", "") + :chars [ "{" "[" "(" "\"" "'" ] + :pattern (string.gsub "[%'%\"%)%>%]%)%}%,]" "%s+" "") :check_comma true :highlight :PmenuSel :highlight_grey :LineNr |