aboutsummaryrefslogtreecommitdiffstats
path: root/append-comment.lua
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2021-09-30 00:23:28 +0100
committergarret <garret@airmail.cc>2021-09-30 00:37:09 +0100
commit04a61982e82a5df1cb2ec77a5d9752782a7c41e0 (patch)
tree35ec751a28b717a7cc6158f84357408173339bff /append-comment.lua
parent2a9e07ff9a5f7084d3e2e54ff5d065f9b0a93591 (diff)
downloadaegisub-scripts-04a61982e82a5df1cb2ec77a5d9752782a7c41e0.tar.gz
aegisub-scripts-04a61982e82a5df1cb2ec77a5d9752782a7c41e0.tar.bz2
aegisub-scripts-04a61982e82a5df1cb2ec77a5d9752782a7c41e0.zip
macro folder
the beginning of becoming like every other cartel-aproved script repo in existence
Diffstat (limited to 'append-comment.lua')
-rw-r--r--append-comment.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/append-comment.lua b/append-comment.lua
deleted file mode 100644
index 47d3feb..0000000
--- a/append-comment.lua
+++ /dev/null
@@ -1,35 +0,0 @@
-script_name = "Append Comment"
-script_description = "{ts do all the work pls kthxbye}"
-script_author = "garret"
-script_version = "1.1.2"
-
-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=1,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
-
-aegisub.register_macro(script_name, script_description, main)