aboutsummaryrefslogtreecommitdiffstats
path: root/macros/garret.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/garret.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/garret.select-comments.lua')
-rw-r--r--macros/garret.select-comments.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/macros/garret.select-comments.lua b/macros/garret.select-comments.lua
new file mode 100644
index 0000000..6f0cf81
--- /dev/null
+++ b/macros/garret.select-comments.lua
@@ -0,0 +1,33 @@
+script_name = "Select comments"
+script_description = "Select all commented lines"
+script_author = "garret"
+script_version = "1.1.0"
+script_namespace = "garret.select-comments"
+-- faster than doing Subtitle -> Select Lines etc (at least in terms of button-presses)
+
+local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
+if haveDepCtrl then
+ depctrl = DependencyControl {
+ --feed="TODO",
+ }
+end
+-- this does not need depctrl at all lol
+-- just for consistency's sake really
+
+function main(sub)
+ 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
+
+if haveDepCtrl then
+ depctrl:registerMacro(main)
+else
+ aegisub.register_macro(script_name, script_description, main)
+end