Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将退格键绑定到 Konsole 中的任何内容(您可能会问,为什么,我正在尝试摆脱按退格键的习惯,而是使用更靠近我的手的 Ctrl+8)。
我不知道如何将退格键绑定到任何内容,即:
bindkey '^H' <nothing>
谢谢你。
将它绑定到空字符串怎么样
bindkey -s "^H" ""
适用于 zsh 5.0.2。