如何防止Ctrl+S暂停 Yakuake 中的输出?
我需要将它提供给控制台中打开的程序(例如 Vim,我想重新映射Ctrl+S以在 Vim 中保存)。
答案1
将其添加到你的 .bashrc 或 .zshrc
stty ixany
stty ixoff -ixon
答案2
没关系,找到了 :3
只需在 bashrc 上添加这些
vim() {
local STTYOPTS="$(stty --save)"
stty stop '' -ixoff
command vim "$@"
stty "$STTYOPTS"
}
参考: http://vim.wikia.com/wiki/Map_Ctrl-S_to_save_current_or_new_files