aboutsummaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Main.hs b/src/Main.hs
index b2a20d7..19050ab 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -40,8 +40,10 @@ main = do
-- The geniuses that made chrome decided that Ctrl+W should kill
-- the current tab! This makes it consistent with the rest of the
-- world ... ctrl+w deletes the last word (ctrl+backspace).
- rebindKey (controlMask, xK_w) (controlMask, xK_BackSpace),
- rebindKey (controlMask, xK_h) (0, xK_BackSpace)
+ rebindKey (controlMask, xK_w) (controlMask, xK_BackSpace)
+ , rebindKey (controlMask, xK_h) (0, xK_BackSpace)
+ , rebindKey (controlMask, xK_u) (controlMask .|. shiftMask, xK_BackSpace)
+ , rebindKey (controlMask, xK_b) (controlMask, xK_w)
]
]) $ def
{ terminal = "alacritty"