diff options
author | marha <marha@users.sourceforge.net> | 2009-07-24 17:45:11 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-07-24 17:45:11 +0000 |
commit | ea63f0fae5c393ccf198aad0ae4dbda6d2a4391a (patch) | |
tree | c1156ac1a1074e2f5c34e8798f28a1c0372f1356 /xorg-server/xkbdata.src/symbols/ctrl | |
parent | 61339f6bcfca02be629416f549a634dd34aed98f (diff) | |
download | vcxsrv-ea63f0fae5c393ccf198aad0ae4dbda6d2a4391a.tar.gz vcxsrv-ea63f0fae5c393ccf198aad0ae4dbda6d2a4391a.tar.bz2 vcxsrv-ea63f0fae5c393ccf198aad0ae4dbda6d2a4391a.zip |
Added xkeyboard-config-1.6.tar.gz
Diffstat (limited to 'xorg-server/xkbdata.src/symbols/ctrl')
-rw-r--r-- | xorg-server/xkbdata.src/symbols/ctrl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xorg-server/xkbdata.src/symbols/ctrl b/xorg-server/xkbdata.src/symbols/ctrl index ca3b8bdc1..e9c4efff5 100644 --- a/xorg-server/xkbdata.src/symbols/ctrl +++ b/xorg-server/xkbdata.src/symbols/ctrl @@ -5,15 +5,15 @@ // eliminate the caps lock key completely (replace with control) partial modifier_keys xkb_symbols "nocaps" { - key <CAPS> { symbols[Group1]= [ Control_L, Control_L ] }; + replace key <CAPS> { [ Control_L, Control_L ] }; modifier_map Control { <CAPS>, <LCTL> }; }; // swap the caps lock key with the left control key partial modifier_keys xkb_symbols "swapcaps" { - key <CAPS> { symbols[Group1]= [ Control_L ] }; - key <LCTL> { symbols[Group1]= [ Caps_Lock ] }; + replace key <CAPS> { [ Control_L ] }; + replace key <LCTL> { [ Caps_Lock ] }; }; // moves the control key to the middle row and the caps lock @@ -21,8 +21,8 @@ xkb_symbols "swapcaps" { // file has defined appropriate aliases for the keys in question. partial modifier_keys xkb_symbols "ctrl_ac" { - key <AC00> { symbols[Group1]= [ Control_L ] }; - key <AA00> { symbols[Group1]= [ Caps_Lock ] }; + replace key <AC00> { [ Control_L ] }; + replace key <AA00> { [ Caps_Lock ] }; }; // Moves the control key to the bottom row and the caps lock @@ -30,8 +30,8 @@ xkb_symbols "ctrl_ac" { // file has defined appropriate aliases for the keys in question. partial modifier_keys xkb_symbols "ctrl_aa" { - key <AA00> { symbols[Group1]= [ Control_L ] }; - key <AC00> { symbols[Group1]= [ Caps_Lock ] }; + replace key <AA00> { [ Control_L ] }; + replace key <AC00> { [ Caps_Lock ] }; }; // Right Ctrl works as Right Alt |