pay-respects/rules/cd.toml

24 lines
312 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
]
suggest = [
'''
#[!shell(nu)]
mkdir --parents {{command[1]}} && \
cd {{command[1]}} '''
2023-08-06 02:26:09 +02:00
]
[[match_err]]
pattern = [
"nu::shell::directory_not_found"
]
suggest = [
'''
mkdir {{command[1]}} and \
cd {{command[1]}} '''
]