I am trying to assign "control" to my Super R key in /usr/share/X11/xkb/symbols/pc.
So, I change
key <RWIN> { [ Super_R ] }
to
key <RWIN> { [ Control_R ] }
Then I start X and use xev to verify that the change took place. Indeed, xev reports Control_R when I press my right "super" (windows) key.
However, when I want to use ctrl-c or ctrl-d by pressing the right super key and c or d, respectively, a program is not stopped nor is a shell exited.
It works as always when I use the left control key.
If I exit X and also change
key <RCTL> { [ Control_R ] }
to
key <RCTL> { [ Super_R ] }
and then start X again, the right super key behaves as the control key. However, the right control key does not behave as control anymore, which is undesired by me.
So, I am wondering why the first change did not bring the desired keyboard changes about and how I can assign control functionality to the right super key.