pay-respects/rules/cat.toml

20 lines
258 B
TOML
Raw Normal View History

2023-08-06 02:26:09 +02:00
command = "cat"
[[match_err]]
pattern = [
"no such file or directory"
]
suggest = [
'''
2023-08-07 18:35:07 +02:00
cat {{typo[1](file)}} '''
2023-08-06 02:26:09 +02:00
]
[[match_err]]
pattern = [
"is a directory"
]
suggest = [
'''
2023-08-07 18:35:07 +02:00
ls {{command[1:]}} --almost-all --color=auto --group-directories-first '''
2023-08-06 02:26:09 +02:00
]