command/map: add Alt/Super as aliases for Mod1/Mod4

I personally made the mistake of using Alt instead of Mod1 when messing
with my config. This change makes things a bit more user
friendly/intuitive.
This commit is contained in:
Isaac Freund 2022-01-17 12:38:41 +01:00
parent 0bdf348883
commit f79c784e84
No known key found for this signature in database
GPG Key ID: 86DED400DDFD7A11
2 changed files with 9 additions and 4 deletions

View File

@ -162,14 +162,17 @@ is active. It cannot be entered or exited manually.
The following modifiers are available for use in mappings: The following modifiers are available for use in mappings:
- Shift - Shift
- Lock (Caps lock) - Lock
- Control (Ctrl) - Control
- Mod1 (Alt) - Mod1 (Alt)
- Mod2 - Mod2
- Mod3 - Mod3
- Mod4 (Super, Logo, Windows) - Mod4 (Super)
- Mod5 - Mod5
- None (Create a mapping without modifiers) - None
Alt and Super are aliases for Mod1 and Mod4 respectively. None allows creating
a mapping without modifiers
Keys are specified by their XKB keysym name. See Keys are specified by their XKB keysym name. See
_/usr/include/xkbcommon/xkbcommon-keysyms.h_ for the complete list. _/usr/include/xkbcommon/xkbcommon-keysyms.h_ for the complete list.

View File

@ -187,9 +187,11 @@ fn parseModifiers(
.{ .name = "Lock", .field_name = "caps" }, .{ .name = "Lock", .field_name = "caps" },
.{ .name = "Control", .field_name = "ctrl" }, .{ .name = "Control", .field_name = "ctrl" },
.{ .name = "Mod1", .field_name = "alt" }, .{ .name = "Mod1", .field_name = "alt" },
.{ .name = "Alt", .field_name = "alt" },
.{ .name = "Mod2", .field_name = "mod2" }, .{ .name = "Mod2", .field_name = "mod2" },
.{ .name = "Mod3", .field_name = "mod3" }, .{ .name = "Mod3", .field_name = "mod3" },
.{ .name = "Mod4", .field_name = "logo" }, .{ .name = "Mod4", .field_name = "logo" },
.{ .name = "Super", .field_name = "logo" },
.{ .name = "Mod5", .field_name = "mod5" }, .{ .name = "Mod5", .field_name = "mod5" },
}) |def| { }) |def| {
if (std.mem.eql(u8, def.name, mod_name)) { if (std.mem.eql(u8, def.name, mod_name)) {