我想在我的 zsh 中绑定键,请问相应的命令是⇧ ⌫什么?backward-delete-word
bindkey
答案1
我无意中解决了这个问题,请尝试:
- ⌘,> 配置文件 > 键盘 > [+]> 定义 的输出⇧⌫,比如
helloworld
。
(应该是类似的^[[2;1~
) - 在您的
.zshrc
文件中,添加以下行
# Comment for your key bindings
bindkey "helloworld" backward-delete-word
现在它应该可以工作了。