diff options
Diffstat (limited to 'plugins/regexreplacepreview.lua')
-rw-r--r-- | plugins/regexreplacepreview.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/regexreplacepreview.lua b/plugins/regexreplacepreview.lua index 18d692b..dfc9e45 100644 --- a/plugins/regexreplacepreview.lua +++ b/plugins/regexreplacepreview.lua @@ -87,10 +87,9 @@ local function regex_replace_file(view, pattern, old_lines, raw, start_line, end return old_lines, line_scroll ~= nil end -command.add("core.docview", { - ["regex-replace-preview:find-replace-regex"] = function() +command.add("core.docview!", { + ["regex-replace-preview:find-replace-regex"] = function(view) local old_lines = {} - local view = core.active_view local doc = view.doc local original_selection = { doc:get_selection(true) } local selection = doc:has_selection() and { doc:get_selection(true) } or {} |