pay-respects/rules/cd.toml

15 lines
277 B
TOML
Raw Normal View History

2023-08-06 02:26:09 +02:00
command = "cd"
[[match_err]]
pattern = [
"no such file or directory"
]
# as rust runs on its own environment, it's not possible to change
# the directory automatically
suggest = [
'''
#[err_contains(no such file or directory)]
mkdir -p {{command[1]}}
cd {{command[1]}} '''
2023-08-06 02:26:09 +02:00
]