remove comments

ironic, i know
This commit is contained in:
garret 2021-08-10 02:15:46 +01:00
parent b2881cc52e
commit c0e33d0ebd
1 changed files with 1 additions and 17 deletions

View File

@ -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)