aboutsummaryrefslogtreecommitdiffstats
path: root/macros/select-comments.lua
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2021-10-09 15:20:50 +0100
committergarret <garret@airmail.cc>2021-10-09 15:20:50 +0100
commit472fc5337dc41abc9545256720f3265f466f9b16 (patch)
treed38b119d08cef1517ba70b1f56ca48aff201c959 /macros/select-comments.lua
parent52f3a086f2ad7a3bbc9b8f8225a99e9e99120613 (diff)
downloadaegisub-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/select-comments.lua')
-rw-r--r--macros/select-comments.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/macros/select-comments.lua b/macros/select-comments.lua
deleted file mode 100644
index c0c281d..0000000
--- a/macros/select-comments.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-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)