diff options
author | marha <marha@users.sourceforge.net> | 2009-07-24 18:07:33 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-07-24 18:07:33 +0000 |
commit | a16c0d6f73877af35ea0519917a82d5919e3c304 (patch) | |
tree | b575998554afa00acc1086ff0a5ef17785c75326 /xorg-server/xkbdata.src/symbols/ctrl | |
parent | 0489d8cc5cc2f0bbdbee7aa2ed771ca0d42f30aa (diff) | |
parent | ea63f0fae5c393ccf198aad0ae4dbda6d2a4391a (diff) | |
download | vcxsrv-a16c0d6f73877af35ea0519917a82d5919e3c304.tar.gz vcxsrv-a16c0d6f73877af35ea0519917a82d5919e3c304.tar.bz2 vcxsrv-a16c0d6f73877af35ea0519917a82d5919e3c304.zip |
svn merge file:///D:/svnrepos/vcxsrv/branches/released .
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 |