From 0833c347e7bb4330aa3c06daa7bdb912c594afde Mon Sep 17 00:00:00 2001 From: brandon s allbery kf8nh Date: Wed, 6 Apr 2022 13:00:39 -0400 Subject: [PATCH] Missed a reference to `bindOn` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The perils of making 1-line changes to another module…. Co-authored-by: Tomáš Janoušek --- XMonad/Actions/PerLayoutKeys.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XMonad/Actions/PerLayoutKeys.hs b/XMonad/Actions/PerLayoutKeys.hs index 76114ad1..fd75bbdd 100644 --- a/XMonad/Actions/PerLayoutKeys.hs +++ b/XMonad/Actions/PerLayoutKeys.hs @@ -29,7 +29,7 @@ import XMonad.StackSet as S -- -- > import XMonad.Actions.PerLayoutKeys -- --- > ,((0, xK_F2), bindOn [("Tall", spawn "rxvt"), ("Mirror Tall", spawn "xeyes"), ("", spawn "xmessage hello")]) +-- > ,((0, xK_F2), bindByLayout [("Tall", spawn "rxvt"), ("Mirror Tall", spawn "xeyes"), ("", spawn "xmessage hello")]) -- -- For detailed instructions on editing your key bindings, see -- "XMonad.Doc.Extending#Editing_key_bindings".