symbols_deprecated

Context: user.community.plugin.symbols.symbols_deprecated.talon

SpokenBackend
(brace | curly bracket) thatuser.deprecate_command("2024-11-24", "(brace | curly bracket) that", "curly that")
text = edit.selected_text()
user.paste("{{{text}}}")
(double quote | dub quote) thatuser.deprecate_command("2024-11-24", "(double quote | dub quote) that", "quad that")
text = edit.selected_text()
user.paste('"{text}"')
(grave | back tick) thatuser.deprecate_command("2024-11-24", "(grave | back tick) that", "skis that")
text = edit.selected_text()
user.paste("`{text}`")
(parens | args) thatuser.deprecate_command("2024-11-24", "(parens | args) that", "round that")
text = edit.selected_text()
user.paste("({text})")
(square | bracket | square bracket) thatuser.deprecate_command("2024-11-24", "(square | bracket | square bracket) that", "box that")
text = edit.selected_text()
user.paste("[{text}]")
angle thatuser.deprecate_command("2024-11-24", "angle that", "diamond that")
text = edit.selected_text()
user.paste("<{text}>")
empty dub stringuser.deprecate_command("2024-11-24", "empty dub string", "quad")
user.insert_between('"', '"')
empty escaped (dub string | dub quotes)user.deprecate_command("2024-11-24", "empty escaped (dub string | dub quotes)", "escaped quad")
user.insert_between('\\"', '\\"')
empty escaped stringuser.deprecate_command("2024-11-24", "empty escaped string", "escaped twin")
user.insert_between("\\'", "\\'")
empty stringuser.deprecate_command("2024-11-24", "empty string", "twin")
user.insert_between("'", "'")
inside (braces | curly brackets)user.deprecate_command("2024-11-24", "inside (braces | curly brackets)", "curly")
user.insert_between("{", "}")
inside (double quotes | dub quotes)user.deprecate_command("2024-11-24", "inside (double quotes | dub quotes)", "quad")
user.insert_between('"', '"')
inside (graves | back ticks)user.deprecate_command("2024-11-24", "inside (graves | back ticks)", "skis")
user.insert_between("`", "`")
inside (parens | args)user.deprecate_command("2024-11-24", "inside (parens | args)", "round")
user.insert_between("(", ")")
inside (quotes | string)user.deprecate_command("2024-11-24", "inside (quotes | string)", "twin")
user.insert_between("'", "'")
inside (squares | brackets | square brackets | list)user.deprecate_command("2024-11-24", "inside (squares | brackets | square brackets | list)", "box")
user.insert_between("[", "]")
inside percentuser.deprecate_command("2024-11-24", "inside percent", "percentages")
user.insert_between("%", "%")
percent thatuser.deprecate_command("2024-11-24", "percent that", "percentages that")
text = edit.selected_text()
user.paste("%{text}%")
quote thatuser.deprecate_command("2024-11-24", "quote that", "twin that")
text = edit.selected_text()
user.paste("'{text}'")

Mindmap