I use xshell connect to my virtual machine, alt+c is the xshell's default hot key.
through i disabled the xshell's alt+c, fzf can't use alt+c.
can change alt+c to other key conbination? like alt+x?
No option for that, but in bash, you can get the bind expression like so:
bind -s | grep '^"\\ec"'
Then you can use the expression to re-bind it to another key.
bind "$(bind -s | grep '^"\\ec"' | sed 's/\\ec/\\ex/')"
Or you can just fork/edit the source code.
In zsh, it's much easier: bindkey '\ex' fzf-cd-widget
Most helpful comment
No option for that, but in bash, you can get the bind expression like so:
Then you can use the expression to re-bind it to another key.
Or you can just fork/edit the source code.
In zsh, it's much easier:
bindkey '\ex' fzf-cd-widget