如何解决游戏中的 Ctrl 和 Shift 问题?

如何解决游戏中的 Ctrl 和 Shift 问题?

我在玩游戏时经常遇到CtrlShift修饰符的问题(可能这是侏儒特有的)。例如,如果我按住以Ctrl蹲下,然后3在蹲下时按下以选择某把枪,我就会进入游戏菜单(由触发Esc)。

答案1

删除绑定(按键在游戏中仍然有效)

xmodmap -e 'remove Control = Control_L'
xmodmap -e 'remove shift = Shift_L'

游戏结束后重新添加绑定

xmodmap -e 'add Control = Control_L'
xmodmap -e 'add shift = Shift_L'

相关内容