我的 Thinkpad R500 的后退/前进键与方向键差不多,因此在 Firefox 上我总是意外丢失输入的文本。
如何禁用这些后退/前进键?
摘录自 xev:
KeyPress event, serial 29, synthetic NO, window 0x5e00001,
root 0xbc, subw 0x0, time 2375874, (1279,794), root:(1285,881),
state 0x10, keycode 166 (keysym 0x1008ff26, XF86Back), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 32, synthetic NO, window 0x5e00001,
root 0xbc, subw 0x0, time 2377115, (1279,794), root:(1285,881),
state 0x10, keycode 167 (keysym 0x1008ff27, XF86Forward), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
答案1
您可以使用以下方式禁用按键xmodmap
命令。例如,要禁用XF86Back
,请运行以下命令:
xmodmap -e "keycode 166="
这会将键码(如您在输出中看到166
的键码)设置为无,这意味着它已被禁用。要重新启用: XF86Back
xev
XF86Back
xmodmap -e "keycode 166=XF86Back"
.xmodmap
要自动禁用“后退”和“前进”键,请在主文件夹中创建文件并将以下内容粘贴到其中:
keycode 166=
keycode 167=