pay-respects/rules/rm.toml
2024-12-08 21:14:27 +01:00

22 lines
288 B
TOML

command = "rm"
[[match_err]]
pattern = [
"is a directory",
"try --recursive"
]
suggest = [
'''
{{command}} --recursive '''
]
[[match_err]]
pattern = [
"no such file or directory",
"file(s) not found"
]
suggest = [
'''
{{command[0}} {{opt::(?:\s)(-[\w]+)}} {{typo[1:](file)}} '''
]