Merge branch 'master' into master

This commit is contained in:
sam-barr
2020-08-06 07:48:49 -05:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -142,6 +142,10 @@
* `XMonad.Hooks.ManageHelpers`
- Export `doSink`
* `XMonad.Util.EZConfig`
- Added support for XF86Bluetooth.
## 0.16
### Breaking Changes

View File

@@ -356,6 +356,7 @@ removeMouseBindings conf mouseBindingList =
-- > <XF86_ClearGrab>
-- > <XF86_Next_VMode>
-- > <XF86_Prev_VMode>
-- > <XF86Bluetooth>
mkKeymap :: XConfig l -> [(String, X ())] -> M.Map (KeyMask, KeySym) (X ())
mkKeymap c = M.fromList . mkSubmaps . readKeymap c
@@ -677,7 +678,8 @@ multimediaKeys = filter ((/= noSymbol) . snd) . map (id &&& stringToKeysym) $
, "XF86_Ungrab"
, "XF86_ClearGrab"
, "XF86_Next_VMode"
, "XF86_Prev_VMode" ]
, "XF86_Prev_VMode"
, "XF86Bluetooth" ]
-- | Given a configuration record and a list of (key sequence
-- description, action) pairs, check the key sequence descriptions