summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@telfort.nl>2022-05-06 11:21:23 +0200
committerBenno Schulenberg <bensberg@telfort.nl>2022-05-06 11:48:35 +0200
commitad8e234c1fe270e01130b8815b5f789656c2d324 (patch)
tree5e82bdb5d195bd03c04f3d73b2c0af22ca7a27a9
parente687dbd38b98330ffb5cd77d865180afbdffb3ad (diff)
symbols/group: make the seven comments about 'Mode_switch' more accurate
In compat/basic the Mode_switch symbol does 'action= SetGroup(group=+1)', meaning that (while the relevant key is held) symbols will be picked from the _next_ group, not from the second group. Adjust the comments to say so. Also improve three other comments.
-rw-r--r--symbols/group22
1 files changed, 10 insertions, 12 deletions
diff --git a/symbols/group b/symbols/group
index dfe0b3ed..536abc0d 100644
--- a/symbols/group
+++ b/symbols/group
@@ -1,4 +1,4 @@
-// The right Alt key (while pressed) chooses the second keyboard group.
+// The right Alt key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "switch" {
key <RALT> {
@@ -7,7 +7,7 @@ xkb_symbols "switch" {
};
};
-// The left Alt key (while pressed) chooses the second keyboard group.
+// The left Alt key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "lswitch" {
key <LALT> {
@@ -16,14 +16,14 @@ xkb_symbols "lswitch" {
};
};
-// Either Win key (while pressed) chooses the second keyboard group.
+// Either Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "win_switch" {
include "group(lwin_switch)"
include "group(rwin_switch)"
};
-// The left Win key (while pressed) chooses the second keyboard group.
+// The left Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "lwin_switch" {
key <LWIN> {
@@ -32,7 +32,7 @@ xkb_symbols "lwin_switch" {
};
};
-// The right Win key (while pressed) chooses the second keyboard group.
+// The right Win key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "rwin_switch" {
key <RWIN> {
@@ -41,7 +41,7 @@ xkb_symbols "rwin_switch" {
};
};
-// The right Menu key (while pressed) chooses the second keyboard group.
+// The Menu key (while pressed) chooses the next group,
// while Shift+Menu acts as Menu.
partial modifier_keys
xkb_symbols "menu_switch" {
@@ -51,8 +51,7 @@ xkb_symbols "menu_switch" {
};
};
-// The right Ctrl key (while pressed) chooses the second keyboard group.
-// (Needed mainly for the Canadian keyboard.)
+// The right Ctrl key (while pressed) chooses the next group.
partial modifier_keys
xkb_symbols "rctrl_switch" {
key <RCTL> {
@@ -412,7 +411,7 @@ xkb_symbols "rctrl_toggle" {
};
// Pressing Alt+Caps_Lock switches to the next group,
-// pressing Caps_Lock toggles CapsLock.
+// while pressing Caps_Lock alone toggles CapsLock.
partial modifier_keys
xkb_symbols "alt_caps_toggle" {
key <CAPS> {
@@ -434,7 +433,7 @@ xkb_symbols "alt_space_toggle" {
};
};
-// Pressing the Scroll Lock key switches to the next group,
+// Pressing the Scroll Lock key switches to the next group.
partial modifier_keys
xkb_symbols "sclk_toggle" {
virtual_modifiers AltGr;
@@ -458,7 +457,7 @@ xkb_symbols "lctrl_lwin_rctrl_menu" {
};
};
-// Control_L+Win_L toggles groups.
+// Pressing Ctrl + the left Win key switches to the next group.
partial modifier_keys
xkb_symbols "lctrl_lwin_toggle" {
key <LWIN> {
@@ -466,4 +465,3 @@ xkb_symbols "lctrl_lwin_toggle" {
symbols[ Group1 ] = [ Super_L, ISO_Next_Group ]
};
};
-