doc: nushell incompatibilities

This commit is contained in:
iff 2023-08-12 23:11:11 +02:00
parent 3e9678506a
commit 12e4ac7093
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ You can now **press `F` to Pay Respects**!
Currently, only corrections to `bash`, `zsh`, and `fish` are working flawlessly. Currently, only corrections to `bash`, `zsh`, and `fish` are working flawlessly.
`nushell` is currently usable, but there is no alias expansion and you will have to put the evaluated initialization command in your config file (added automatically with `pay-respects nushell`). `nushell` is currently usable, but there is no alias expansion and you will have to put the evaluated initialization command in your config file (added automatically with `pay-respects nushell`). In addition, commands that need to be evaluated in the current working shell (such as `cd`) cannot yet be implemented in `nushell`.
## Installing ## Installing

View file

@ -9,6 +9,6 @@ pattern = [
# the directory automatically # the directory automatically
suggest = [ suggest = [
''' '''
mkdir -p {{command[1]}} mkdir -p {{command[1]}} && \
cd {{command[1]}} ''' cd {{command[1]}} '''
] ]