diff options
-rw-r--r-- | manifest.json | 2 | ||||
-rw-r--r-- | plugins/lfautoinsert.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/manifest.json b/manifest.json index a6cd6b6..16f934e 100644 --- a/manifest.json +++ b/manifest.json @@ -931,7 +931,7 @@ }, { "description": "Automatically inserts indentation and closing bracket/text after newline", - "version": "0.2", + "version": "0.2.1", "path": "plugins/lfautoinsert.lua", "id": "lfautoinsert", "mod_version": "3" diff --git a/plugins/lfautoinsert.lua b/plugins/lfautoinsert.lua index 3e5302f..12a3b76 100644 --- a/plugins/lfautoinsert.lua +++ b/plugins/lfautoinsert.lua @@ -90,7 +90,7 @@ command.add("core.docview!", { then close = str and close:gsub("$TEXT", str) or close -- Avoid inserting `close` if it's already present - if remainder:find("^"..close) then + if remainder:find(close, 1, true) == 1 then close = "" end post = string.format("\n%s%s", current_indent, close) |