aboutsummaryrefslogtreecommitdiffstats
path: root/macros/em-dash.lua
diff options
context:
space:
mode:
Diffstat (limited to 'macros/em-dash.lua')
-rw-r--r--macros/em-dash.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/macros/em-dash.lua b/macros/em-dash.lua
new file mode 100644
index 0000000..99d22df
--- /dev/null
+++ b/macros/em-dash.lua
@@ -0,0 +1,27 @@
+script_name = "Em-dash"
+script_description = "I do not have an em-dash key on my keyboard"
+script_author = "garret"
+script_version = "2021-04-05"
+em = "—"
+function append(sub, sel)
+ for si, li in ipairs(sel) do
+ local line = sub[li]
+ line.text = line.text..em
+ sub[li] = line
+ end
+ aegisub.set_undo_point(script_name)
+end
+
+function replace(sub, sel)
+ for si, li in ipairs(sel) do
+ local line = sub[li]
+ local text = sub[li].text
+ text = text:gsub("%-%-",em)
+ line.text=text
+ sub[li] = line
+ end
+ aegisub.set_undo_point(script_name)
+end
+
+aegisub.register_macro(script_name.."/Append", "Appends an Em-dash to the selected line(s)", append)
+aegisub.register_macro(script_name.."/Replace", "Replaces -- with "..em, replace)