From 04a61982e82a5df1cb2ec77a5d9752782a7c41e0 Mon Sep 17 00:00:00 2001 From: garret Date: Thu, 30 Sep 2021 00:23:28 +0100 Subject: macro folder the beginning of becoming like every other cartel-aproved script repo in existence --- macros/select-comments.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 macros/select-comments.lua (limited to 'macros/select-comments.lua') diff --git a/macros/select-comments.lua b/macros/select-comments.lua new file mode 100644 index 0000000..c0c281d --- /dev/null +++ b/macros/select-comments.lua @@ -0,0 +1,18 @@ +script_name = "Select Comments" +script_description = "Selects all commented lines" +script_author = "garret" +script_version = "1.0.1" + +function main(sub, sel) + sel = {} + for i=1,#sub do + line=sub[i] + if line.comment == true then + table.insert(sel, i) + end + end + aegisub.set_undo_point(script_name) + return sel +end + +aegisub.register_macro(script_name, script_description, main) -- cgit v1.2.3-70-g09d2