I have a small laptop which doesn't have a full keyboard and I would like to insert with Shift+Insert to insert from the X clipboard but I don't have an Insert key. So I figured I just look it up the keycode for F9 with xev
(it was 75) and just remap the key with xmodmap
in the following way:
xmodmap -e "keycode 75 = Insert"
which should work but it didn't. So I'm stuck now. Could someone help me out?