diff options
author | garret <garret@airmail.cc> | 2021-10-09 15:20:50 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2021-10-09 15:20:50 +0100 |
commit | 472fc5337dc41abc9545256720f3265f466f9b16 (patch) | |
tree | d38b119d08cef1517ba70b1f56ca48aff201c959 /macros/garret.append-comment.lua | |
parent | 52f3a086f2ad7a3bbc9b8f8225a99e9e99120613 (diff) | |
download | aegisub-scripts-472fc5337dc41abc9545256720f3265f466f9b16.tar.gz aegisub-scripts-472fc5337dc41abc9545256720f3265f466f9b16.tar.bz2 aegisub-scripts-472fc5337dc41abc9545256720f3265f466f9b16.zip |
add depctrl thing
no feed yet, will get round to it eventuallyâ„¢
Diffstat (limited to 'macros/garret.append-comment.lua')
-rw-r--r-- | macros/garret.append-comment.lua | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/macros/garret.append-comment.lua b/macros/garret.append-comment.lua new file mode 100644 index 0000000..9f3ec79 --- /dev/null +++ b/macros/garret.append-comment.lua @@ -0,0 +1,47 @@ +script_name = "Append Comment" +script_description = "{ts do all the work pls kthxbye}" +script_author = "garret" +script_version = "1.2.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) + dialog_config= + { + { + class="label", + x=0,y=0,width=1,height=1, + label="Comment:" + }, + { + class="edit",name="msg", + x=0,y=1,width=3,height=2, + value="" + } + } + if #sel == 1 then + table.insert(dialog_config, {class="label",x=0,y=3,width=1,height=1,label="if you're not using this for multiple lines \nyou may as well just type it out yourself"}) + end + button, results = aegisub.dialog.display(dialog_config) + if button ~= false then + for _, i in ipairs(sel) do + local line = sub[i] + line.text = line.text.." {"..results.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 |