Fix for bcd on zsh

This commit is contained in:
Bruce Hill 2021-07-05 19:54:49 -07:00
parent f5ebe5f2b8
commit 641452dc96

View File

@ -131,7 +131,11 @@ bind '"\C-b":"bcd\n"'
For zsh, instead put this in your `~/.zshrc`: For zsh, instead put this in your `~/.zshrc`:
```zsh ```zsh
bcd() { cd "$(bb -d "$@" <$TTY)"; } bcd() { # Change directory with bb
cd "$(bb -d "$@" <$TTY)"
precmd >/dev/null 2>/dev/null # If precmd sets your $PS1, you may need to re-run it
zle reset-prompt
}
zle -N bcd zle -N bcd
bindkey '^B' bcd bindkey '^B' bcd
``` ```