From 3234b0e521cca006a94cb135a88d146122d7f66d Mon Sep 17 00:00:00 2001 From: Arthur Williams Date: Mon, 20 Sep 2021 11:17:35 +0600 Subject: Allow any set of modifiers to be used in keybindings Previous the code only allowed ShiftMask,ControlMask or Mod1Mask to be used in keybindings and the presence of any others modifiers would be ignored. Most problems generally allow certain modifiers to be be ignored but not most and certainly don't allow Super-A to be treated like A. Now users can use any modifiers they want in keybindings and can also ignore any modifiers they want. By default only ModMask2 (commonly numlock is ignored) Co-authored-by: N-R-K <79544946+N-R-K@users.noreply.github.com> --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 52062ca..7c58594 100644 --- a/main.c +++ b/main.c @@ -566,7 +566,7 @@ end: redraw(); } -#define MODMASK(mask) ((mask) & (ShiftMask|ControlMask|Mod1Mask)) +#define MODMASK(mask) ((mask) & ~ignore_mask) void on_keypress(XKeyEvent *kev) { -- cgit v1.2.3-54-g00ecf