You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When resh add following config into my ~/.bashrc, which start resh after fzf. (fzf start eariler)
[[ -f ~/.resh/shellrc ]] && source ~/.resh/shellrc # this line was added by RESH
[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh # this line was added by RESH
Which broken fzf Ctrl + t feature, get following error.
bash: bash_execute_unix_command: cannot find keymap for command
But, start resh before fzf not works too, because fzf will override resh completely.
Thanks.
The text was updated successfully, but these errors were encountered:
# resh.sh
[[ -f~/.resh/shellrc ]] &&source~/.resh/shellrc # this line was added by RESH
[[ -f~/.bash-preexec.sh ]] &&source~/.bash-preexec.sh # this line was added by RESH
If source fzf.sh then resh.sh, resh will make fzf Ctrl + t broken, because both of them use Ctrl + t for folder history.
If source resh.sh then fzf.sh, fzf will override resh.
When resh add following config into my ~/.bashrc, which start resh after fzf. (fzf start eariler)
Which broken fzf
Ctrl + t
feature, get following error.But, start resh before fzf not works too, because fzf will override resh completely.
Thanks.
The text was updated successfully, but these errors were encountered: