aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--select-comments.lua18
1 files changed, 1 insertions, 17 deletions
diff --git a/select-comments.lua b/select-comments.lua
index ce2e255..c0c281d 100644
--- a/select-comments.lua
+++ b/select-comments.lua
@@ -1,30 +1,14 @@
script_name = "Select Comments"
script_description = "Selects all commented lines"
script_author = "garret"
-script_version = "1.0.0"
-
--- logging stuff, for testing
--- commented out because for the user it's an external dependency for no good reason
---[[inspect = require 'inspect'
-function log(level, msg)
- if type(level) ~= "number" then
- level = msg
- level = 4
- end
- if type(msg) == "table" then
- msg = inspect(msg)
- end
- aegisub.log(level, tostring(msg) .. "\n")
-end]]
+script_version = "1.0.1"
function main(sub, sel)
sel = {}
for i=1,#sub do
line=sub[i]
if line.comment == true then
- --log(4, "comment on line "..i)
table.insert(sel, i)
- --log(4, sel)
end
end
aegisub.set_undo_point(script_name)