diff --git a/README.md b/README.md index 44c68e9..6a8df66 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ You can now **press `F` to Pay Respects**! 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 diff --git a/rules/cd.toml b/rules/cd.toml index e8c5c3d..2f1beb2 100644 --- a/rules/cd.toml +++ b/rules/cd.toml @@ -9,6 +9,6 @@ pattern = [ # the directory automatically suggest = [ ''' -mkdir -p {{command[1]}} +mkdir -p {{command[1]}} && \ cd {{command[1]}} ''' ]