aboutsummaryrefslogtreecommitdiffstats
path: root/macros/em-dash.lua
blob: 99d22df14b4862443899d150f25372ec3bfb2e01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)