尝试重新映射 f9 以插入键

尝试重新映射 f9 以插入键

我有一台小型笔记本电脑,没有完整的键盘,我想用Shift+插入Insert以从 X 剪贴板插入,但我没有Insert钥匙。所以我想我只需查找F9with的键码(它是 75),然后按以下方式xev重新映射键:xmodmap

xmodmap -e "keycode 75 = Insert"

这应该有效,但没有。所以我现在被困住了。有人可以帮我吗?

答案1

您必须至少添加一列。

# set Key and Shift+Key
xmodmap -e "keycode 75 = Insert Insert"
# set all
xmodmap -e "keycode 75 = Insert Insert Insert Insert Insert Insert"

每个键码后面都有其映射到的键符号。上面的示例表明键码 57 映射到小写 n,而大写 N 映射到键码 57 加 Shift。

表中的每个键符号列对应于修饰键的特定组合:

1. Key
2. Shift+Key
3. mode_switch+Key
4. mode_switch+Shift+Key
5. AltGr+Key
6. AltGr+Shift+Key

--https://wiki.archlinux.org/index.php/Xmodmap#Keymap_table

相关内容