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.
inでCtrl-c使用する際に通常のvimモードに戻すために使用したかったのです。私はそれを使用してそれをアンマップすることができました:zshvi-mode
Ctrl-c
zsh
vi-mode
stty intr ^- stty intr undef
そしてbindkey '^c' vi-cmd-mode、私の中で使用されます.zshrc。Ctrl-cすべて正常に動作していますが、機能を別のキー バインドに戻すにはどうすればよいですか?
bindkey '^c' vi-cmd-mode
.zshrc
記録のために、答えとして追加します:
stty intr ^Eまたは同様のものが機能するはずです。:)
stty intr ^E