pay-respects/rules/cd.toml

15 lines
258 B
TOML
Raw Normal View History

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