dupe and comment: fix sel and act

selected lines and active line will
now be properly set after do and undo

removed aegisub.util from requiredModules
This commit is contained in:
Akatsumekusa 2023-01-13 11:56:34 +00:00 committed by garret
parent 12fe89b0b9
commit b2f27bd080
1 changed files with 10 additions and 11 deletions

View File

@ -5,29 +5,25 @@ script_version = "2.1.3"
script_namespace = "garret.dupe-and-comment" script_namespace = "garret.dupe-and-comment"
local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl") local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
local util
if haveDepCtrl then if haveDepCtrl then
depctrl = DependencyControl { depctrl = DependencyControl {
--feed="TODO", --feed="TODO",
{"aegisub.util"}
} }
util = depctrl:requireModules()
else
util = require 'aegisub.util'
end end
local function comment(subs, sel) local function comment(subs, sel, act)
for i=#sel,1,-1 do for i=#sel,1,-1 do
local line=subs[sel[i]] local line=subs[sel[i]]
local original = util.copy(line) line.comment = true
line.comment = false -- going to edit it, so we probably want to see it on the video subs.insert(sel[i]+1, line)
original.comment = true -- this is the actual original one for j=i+1,#sel do sel[j] = sel[j] + 1 end
subs.insert(sel[i]+1, original) -- putting it on the next line so i don't have to change line if act > sel[i] then act = act + 1 end
end end
aegisub.set_undo_point(script_name) aegisub.set_undo_point(script_name)
return sel, act
end end
local function undo(subs, sel) local function undo(subs, sel, act)
for i=#sel,1,-1 do for i=#sel,1,-1 do
local edit=subs[sel[i]] local edit=subs[sel[i]]
if not (sel[i] + 1 > #subs) then if not (sel[i] + 1 > #subs) then
@ -36,10 +32,13 @@ local function undo(subs, sel)
original.comment = false original.comment = false
subs[sel[i]+1] = original subs[sel[i]+1] = original
subs.delete(sel[i]) subs.delete(sel[i])
for j=i+1,#sel do sel[j] = sel[j] - 1 end
if act > sel[i] then act = act - 1 end
end end
end end
end end
aegisub.set_undo_point("Undo "..script_name) aegisub.set_undo_point("Undo "..script_name)
return sel, act
end end
local macros = { local macros = {