pay-respects/rules/cd.toml
2023-08-12 23:09:56 +02:00

14 lines
253 B
TOML

command = "cd"
[[match_err]]
pattern = [
"no such file or directory",
"does not exist"
]
# as rust runs on its own environment, it's not possible to change
# the directory automatically
suggest = [
'''
mkdir -p {{command[1]}}
cd {{command[1]}} '''
]