diff options
Diffstat (limited to 'append-comment.lua')
-rw-r--r-- | append-comment.lua | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/append-comment.lua b/append-comment.lua new file mode 100644 index 0000000..f8cc92b --- /dev/null +++ b/append-comment.lua @@ -0,0 +1,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 |