diff options
author | garret <garret@airmail.cc> | 2024-02-25 23:01:13 +0000 |
---|---|---|
committer | garret <garret@airmail.cc> | 2024-02-25 23:08:47 +0000 |
commit | 67d261ab378fa9166ee6e0c31b7cb4e32a019925 (patch) | |
tree | 1fbd2153481e675f283f731c1da59d584513f2c9 /macros/comment selection.lua | |
parent | 5edf42a777b02ab939ab751a7d3e7eb0a7efde70 (diff) | |
download | aegisub-scripts-67d261ab378fa9166ee6e0c31b7cb4e32a019925.tar.gz aegisub-scripts-67d261ab378fa9166ee6e0c31b7cb4e32a019925.tar.bz2 aegisub-scripts-67d261ab378fa9166ee6e0c31b7cb4e32a019925.zip |
get rid of dependencycontrol bullshit
there is no sense in me keeping it around when all it does is
add faff to writing the script
add useless noise to the filenames/paths
and enforces its opinions upon me which i dont agree with
and all for absolutely ZERO reason since i don't even have a feed in the
first place
if you want to take my scripts and package them into a dependencycontrol
feed, you are more than welcome to do so, provided you comply with the
terms of the licence. but your life is going to be a little bit harder
i'm afraid, sorry about that.
i will keep all the script_namespace, depctrl registration and such
around for the time being (removing it is >effort)
Diffstat (limited to 'macros/comment selection.lua')
-rw-r--r-- | macros/comment selection.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/macros/comment selection.lua b/macros/comment selection.lua deleted file mode 100644 index e06c853..0000000 --- a/macros/comment selection.lua +++ /dev/null @@ -1,21 +0,0 @@ -script_name = "Comment selection" -script_description = "comment (add {} around) highlighted text in a line" -script_author = "garret" -script_version = "0.1.0" - -local function have_selection_funcs() - return aegisub.gui and aegisub.gui.get_selection -end - -local function main(sub, sel, act) - local line = sub[act] - local start, end_ = aegisub.gui.get_selection() - local txt = line.text:sub(1, start -1 ).."{"..line.text:sub(start, end_-1).."}"..line.text:sub(end_, #line.text) - line.text = txt - sub[act] = line - aegisub.set_undo_point(script_name) -end - -if have_selection_funcs() then - aegisub.register_macro(script_name, script_description, main) -end |