2019-12-28 12:16:32 +01:00
|
|
|
local core = require "core"
|
|
|
|
local command = require "core.command"
|
2020-05-02 12:14:07 +02:00
|
|
|
local config = require "core.config"
|
2019-12-28 12:16:32 +01:00
|
|
|
local search = require "core.doc.search"
|
2021-06-21 03:22:37 +02:00
|
|
|
local keymap = require "core.keymap"
|
2019-12-28 12:16:32 +01:00
|
|
|
local DocView = require "core.docview"
|
2021-06-21 03:22:37 +02:00
|
|
|
local CommandView = require "core.commandview"
|
|
|
|
local StatusView = require "core.statusview"
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
local max_last_finds = 50
|
|
|
|
local last_finds, last_view, last_fn, last_text, last_sel
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2021-07-16 00:15:05 +02:00
|
|
|
local case_sensitive = config.find_case_sensitive or false
|
|
|
|
local find_regex = config.find_regex or false
|
2019-12-28 12:16:32 +01:00
|
|
|
|
|
|
|
local function doc()
|
2021-07-16 00:29:48 +02:00
|
|
|
return core.active_view:is(DocView) and core.active_view.doc or last_view.doc
|
2019-12-28 12:16:32 +01:00
|
|
|
end
|
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
local function get_find_tooltip()
|
|
|
|
local rf = keymap.get_binding("find-replace:repeat-find")
|
2021-07-16 00:15:05 +02:00
|
|
|
local ti = keymap.get_binding("find-replace:toggle-sensitivity")
|
|
|
|
local tr = keymap.get_binding("find-replace:toggle-regex")
|
|
|
|
return (find_regex and "[Regex] " or "") ..
|
|
|
|
(case_sensitive and "[Sensitive] " or "") ..
|
2021-06-21 03:22:37 +02:00
|
|
|
(rf and ("Press " .. rf .. " to select the next match.") or "") ..
|
|
|
|
(ti and (" " .. ti .. " toggles case sensitivity.") or "") ..
|
2021-07-16 00:15:05 +02:00
|
|
|
(tr and (" " .. tr .. " toggles regex find.") or "")
|
2021-06-21 03:22:37 +02:00
|
|
|
end
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
local function update_preview(sel, search_fn, text)
|
2021-08-11 04:01:28 +02:00
|
|
|
local ok, line1, col1, line2, col2 = pcall(search_fn, last_view.doc,
|
|
|
|
sel[1], sel[2], text, case_sensitive, find_regex)
|
2021-06-21 03:22:37 +02:00
|
|
|
if ok and line1 and text ~= "" then
|
|
|
|
last_view.doc:set_selection(line2, col2, line1, col1)
|
|
|
|
last_view:scroll_to_line(line2, true)
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
last_view.doc:set_selection(unpack(sel))
|
|
|
|
return false
|
2019-12-28 12:16:32 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-07 18:33:58 +02:00
|
|
|
|
|
|
|
local function insert_unique(t, v)
|
|
|
|
local n = #t
|
|
|
|
for i = 1, n do
|
|
|
|
if t[i] == v then return end
|
|
|
|
end
|
|
|
|
t[n + 1] = v
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-12-28 12:16:32 +01:00
|
|
|
local function find(label, search_fn)
|
2021-06-21 03:22:37 +02:00
|
|
|
last_view, last_sel, last_finds = core.active_view,
|
|
|
|
{ core.active_view.doc:get_selection() }, {}
|
|
|
|
local text, found = last_view.doc:get_text(unpack(last_sel)), false
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2020-05-09 17:09:07 +02:00
|
|
|
core.command_view:set_text(text, true)
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:show_tooltip(get_find_tooltip())
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2021-09-07 17:06:19 +02:00
|
|
|
core.command_view:set_hidden_suggestions()
|
|
|
|
core.command_view:enter(label, function(text, item)
|
2021-09-07 18:33:58 +02:00
|
|
|
insert_unique(core.previous_find, text)
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:remove_tooltip()
|
2019-12-28 12:16:32 +01:00
|
|
|
if found then
|
|
|
|
last_fn, last_text = search_fn, text
|
|
|
|
else
|
|
|
|
core.error("Couldn't find %q", text)
|
2021-06-21 03:22:37 +02:00
|
|
|
last_view.doc:set_selection(unpack(last_sel))
|
|
|
|
last_view:scroll_to_make_visible(unpack(last_sel))
|
2019-12-28 12:16:32 +01:00
|
|
|
end
|
|
|
|
end, function(text)
|
2021-06-21 03:22:37 +02:00
|
|
|
found = update_preview(last_sel, search_fn, text)
|
|
|
|
last_fn, last_text = search_fn, text
|
2021-09-07 17:06:19 +02:00
|
|
|
return core.previous_find
|
2019-12-28 12:16:32 +01:00
|
|
|
end, function(explicit)
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:remove_tooltip()
|
2019-12-28 12:16:32 +01:00
|
|
|
if explicit then
|
2021-06-21 03:22:37 +02:00
|
|
|
last_view.doc:set_selection(unpack(last_sel))
|
|
|
|
last_view:scroll_to_make_visible(unpack(last_sel))
|
2019-12-28 12:16:32 +01:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2020-05-07 11:55:11 +02:00
|
|
|
local function replace(kind, default, fn)
|
2020-05-09 17:09:07 +02:00
|
|
|
core.command_view:set_text(default, true)
|
2020-05-07 11:55:11 +02:00
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:show_tooltip(get_find_tooltip())
|
2021-09-07 18:08:54 +02:00
|
|
|
core.command_view:set_hidden_suggestions()
|
2020-05-02 15:45:33 +02:00
|
|
|
core.command_view:enter("Find To Replace " .. kind, function(old)
|
2021-09-07 18:33:58 +02:00
|
|
|
insert_unique(core.previous_find, old)
|
2020-05-09 17:09:07 +02:00
|
|
|
core.command_view:set_text(old, true)
|
2020-05-08 14:55:23 +02:00
|
|
|
|
2020-05-02 15:45:33 +02:00
|
|
|
local s = string.format("Replace %s %q With", kind, old)
|
2021-09-07 18:08:54 +02:00
|
|
|
core.command_view:set_hidden_suggestions()
|
2020-05-02 15:45:33 +02:00
|
|
|
core.command_view:enter(s, function(new)
|
2021-09-07 18:42:36 +02:00
|
|
|
core.status_view:remove_tooltip()
|
2021-09-07 18:33:58 +02:00
|
|
|
insert_unique(core.previous_replace, new)
|
2019-12-28 12:16:32 +01:00
|
|
|
local n = doc():replace(function(text)
|
2020-05-02 12:14:07 +02:00
|
|
|
return fn(text, old, new)
|
2019-12-28 12:16:32 +01:00
|
|
|
end)
|
2020-05-02 15:45:33 +02:00
|
|
|
core.log("Replaced %d instance(s) of %s %q with %q", n, kind, old, new)
|
2021-09-07 18:08:54 +02:00
|
|
|
end, function() return core.previous_replace end, function()
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:remove_tooltip()
|
2019-12-28 12:16:32 +01:00
|
|
|
end)
|
2021-09-07 18:08:54 +02:00
|
|
|
end, function() return core.previous_find end, function()
|
2021-08-14 15:11:07 +02:00
|
|
|
core.status_view:remove_tooltip()
|
2019-12-28 12:16:32 +01:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2020-05-01 11:21:57 +02:00
|
|
|
local function has_selection()
|
2021-06-21 03:22:37 +02:00
|
|
|
return core.active_view:is(DocView) and core.active_view.doc:has_selection()
|
2020-05-01 11:21:57 +02:00
|
|
|
end
|
|
|
|
|
2021-09-01 16:29:47 +02:00
|
|
|
local function has_unique_selection()
|
|
|
|
if not core.active_view:is(DocView) then return false end
|
2021-08-28 19:42:06 +02:00
|
|
|
local text = nil
|
|
|
|
for idx, line1, col1, line2, col2 in doc():get_selections(true, true) do
|
|
|
|
if line1 == line2 and col1 == col2 then return false end
|
|
|
|
local selection = doc():get_text(line1, col1, line2, col2)
|
|
|
|
if text ~= nil and text ~= selection then return false end
|
|
|
|
text = selection
|
|
|
|
end
|
|
|
|
return text ~= nil
|
|
|
|
end
|
|
|
|
|
2021-09-08 22:47:37 +02:00
|
|
|
local function is_in_selection(line, col, l1, c1, l2, c2)
|
|
|
|
if line < l1 or line > l2 then return false end
|
|
|
|
if line == l1 and col <= c1 then return false end
|
|
|
|
if line == l2 and col > c2 then return false end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local function is_in_any_selection(line, col)
|
|
|
|
for idx, l1, c1, l2, c2 in doc():get_selections(true, false) do
|
|
|
|
if is_in_selection(line, col, l1, c1, l2, c2) then return true end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2021-08-28 19:42:06 +02:00
|
|
|
local function select_next(all)
|
|
|
|
local il1, ic1 = doc():get_selection(true)
|
|
|
|
for idx, l1, c1, l2, c2 in doc():get_selections(true, true) do
|
2020-05-01 11:21:57 +02:00
|
|
|
local text = doc():get_text(l1, c1, l2, c2)
|
2021-08-28 19:42:06 +02:00
|
|
|
repeat
|
|
|
|
l1, c1, l2, c2 = search.find(doc(), l2, c2, text, { wrap = true })
|
|
|
|
if l1 == il1 and c1 == ic1 then break end
|
2021-09-08 22:47:37 +02:00
|
|
|
if l2 and (all or not is_in_any_selection(l2, c2)) then
|
|
|
|
doc():add_selection(l2, c2, l1, c1)
|
|
|
|
if not all then
|
|
|
|
core.active_view:scroll_to_make_visible(l2, c2)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2021-08-28 19:42:06 +02:00
|
|
|
until not all or not l2
|
2021-09-08 22:47:37 +02:00
|
|
|
if all then break end
|
2020-05-01 11:21:57 +02:00
|
|
|
end
|
2021-08-28 19:42:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
command.add(has_unique_selection, {
|
2021-09-09 19:12:56 +02:00
|
|
|
["find-replace:select-next"] = function()
|
|
|
|
local l1, c1, l2, c2 = doc():get_selection(true)
|
|
|
|
local text = doc():get_text(l1, c1, l2, c2)
|
|
|
|
l1, c1, l2, c2 = search.find(doc(), l2, c2, text, { wrap = true })
|
|
|
|
if l2 then doc():set_selection(l2, c2, l1, c1) end
|
|
|
|
end,
|
|
|
|
["find-replace:select-add-next"] = function() select_next(false) end,
|
|
|
|
["find-replace:select-add-all"] = function() select_next(true) end
|
2020-05-01 11:21:57 +02:00
|
|
|
})
|
|
|
|
|
2019-12-28 12:16:32 +01:00
|
|
|
command.add("core.docview", {
|
|
|
|
["find-replace:find"] = function()
|
2021-07-16 00:15:05 +02:00
|
|
|
find("Find Text", function(doc, line, col, text, case_sensitive, find_regex)
|
|
|
|
local opt = { wrap = true, no_case = not case_sensitive, regex = find_regex }
|
2019-12-28 12:16:32 +01:00
|
|
|
return search.find(doc, line, col, text, opt)
|
|
|
|
end)
|
|
|
|
end,
|
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
["find-replace:replace"] = function()
|
2021-09-09 15:39:41 +02:00
|
|
|
local selected_text = doc():get_text(doc():get_selection())
|
|
|
|
local has_newlines = selected_text:find("\n", 1, true)
|
|
|
|
replace("Text", has_newlines and "" or selected_text, function(text, old, new)
|
2021-07-16 00:15:05 +02:00
|
|
|
if not find_regex then
|
2021-06-21 03:22:37 +02:00
|
|
|
return text:gsub(old:gsub("%W", "%%%1"), new:gsub("%%", "%%%%"), nil)
|
|
|
|
end
|
2021-08-11 04:01:28 +02:00
|
|
|
local result, matches = regex.gsub(regex.compile(old, "m"), text, new)
|
2021-06-21 04:24:20 +02:00
|
|
|
return result, #matches
|
2019-12-28 12:16:32 +01:00
|
|
|
end)
|
|
|
|
end,
|
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
["find-replace:replace-symbol"] = function()
|
|
|
|
local first = ""
|
|
|
|
if doc():has_selection() then
|
|
|
|
local text = doc():get_text(doc():get_selection())
|
|
|
|
first = text:match(config.symbol_pattern) or ""
|
|
|
|
end
|
|
|
|
replace("Symbol", first, function(text, old, new)
|
|
|
|
local n = 0
|
|
|
|
local res = text:gsub(config.symbol_pattern, function(sym)
|
|
|
|
if old == sym then
|
|
|
|
n = n + 1
|
|
|
|
return new
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
return res, n
|
|
|
|
end)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
local function valid_for_finding()
|
|
|
|
return core.active_view:is(DocView) or core.active_view:is(CommandView)
|
|
|
|
end
|
|
|
|
|
|
|
|
command.add(valid_for_finding, {
|
2019-12-28 12:16:32 +01:00
|
|
|
["find-replace:repeat-find"] = function()
|
|
|
|
if not last_fn then
|
|
|
|
core.error("No find to continue from")
|
|
|
|
else
|
2021-06-21 03:34:42 +02:00
|
|
|
local sl1, sc1, sl2, sc2 = doc():get_selection(true)
|
2021-07-16 00:15:05 +02:00
|
|
|
local line1, col1, line2, col2 = last_fn(doc(), sl1, sc2, last_text, case_sensitive, find_regex)
|
2019-12-28 12:16:32 +01:00
|
|
|
if line1 then
|
2021-06-21 03:22:37 +02:00
|
|
|
if last_view.doc ~= doc() then
|
|
|
|
last_finds = {}
|
|
|
|
end
|
|
|
|
if #last_finds >= max_last_finds then
|
|
|
|
table.remove(last_finds, 1)
|
|
|
|
end
|
2021-06-21 03:34:42 +02:00
|
|
|
table.insert(last_finds, { sl1, sc1, sl2, sc2 })
|
2019-12-28 12:16:32 +01:00
|
|
|
doc():set_selection(line2, col2, line1, col1)
|
2021-06-21 03:22:37 +02:00
|
|
|
last_view:scroll_to_line(line2, true)
|
2019-12-28 12:16:32 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
["find-replace:previous-find"] = function()
|
2021-06-21 03:22:37 +02:00
|
|
|
local sel = table.remove(last_finds)
|
|
|
|
if not sel or doc() ~= last_view.doc then
|
2019-12-28 12:16:32 +01:00
|
|
|
core.error("No previous finds")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
doc():set_selection(table.unpack(sel))
|
2021-06-21 03:22:37 +02:00
|
|
|
last_view:scroll_to_line(sel[3], true)
|
2019-12-28 12:16:32 +01:00
|
|
|
end,
|
2021-06-21 03:22:37 +02:00
|
|
|
})
|
2019-12-28 12:16:32 +01:00
|
|
|
|
2021-06-21 03:22:37 +02:00
|
|
|
command.add("core.commandview", {
|
2021-07-16 00:15:05 +02:00
|
|
|
["find-replace:toggle-sensitivity"] = function()
|
|
|
|
case_sensitive = not case_sensitive
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:show_tooltip(get_find_tooltip())
|
2021-08-11 04:01:28 +02:00
|
|
|
if last_sel then update_preview(last_sel, last_fn, last_text) end
|
2020-05-02 12:14:07 +02:00
|
|
|
end,
|
|
|
|
|
2021-07-16 00:15:05 +02:00
|
|
|
["find-replace:toggle-regex"] = function()
|
|
|
|
find_regex = not find_regex
|
2021-06-21 03:22:37 +02:00
|
|
|
core.status_view:show_tooltip(get_find_tooltip())
|
2021-08-11 04:01:28 +02:00
|
|
|
if last_sel then update_preview(last_sel, last_fn, last_text) end
|
2021-06-21 03:22:37 +02:00
|
|
|
end
|
2019-12-28 12:16:32 +01:00
|
|
|
})
|