aboutsummaryrefslogtreecommitdiffstats
path: root/macros/garret.append-comment.lua
blob: f8cc92ba1a07983e2b2157d3914cd290d6cdcda1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
script_name = "Append Comment"
script_description = "{ts do all the work pls kthxbye}"
script_author = "garret"
script_version = "2.0.0"
script_namespace = "garret.append-comment"

local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
if haveDepCtrl then
    depctrl = DependencyControl {
        --feed="TODO",
    }
end

local function main(sub, sel)
    local dialog_config=
    {
        {
            class="label",
            x=0,y=0,width=1,height=1,
            label="Comment:"
        },
        {
            class="textbox",name="msg",
            x=0,y=1,width=10,height=5,
            value=""
        }
    }
    local button, results = aegisub.dialog.display(dialog_config)
    if button ~= false then
        for _, i in ipairs(sel) do
            local line = sub[i]
            local msg = results.msg:gsub("\n", "}{")
            line.text = line.text.." {"..msg.."}"
            sub[i] = line
        end
    else
        aegisub.cancel()
    end
end

if haveDepCtrl then
    depctrl:registerMacro(main)
else
    aegisub.register_macro(script_name, script_description, main)
end