From c796e7533cd8da13f42961966313c926810f6468 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Fri, 8 Apr 2022 15:07:58 -0600 Subject: More generic navigation and documentation. --- src/Internal/Keys.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Internal/Keys.hs') diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index 40ad0af..5b2e5a8 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -403,14 +403,14 @@ keymap = runKeys $ do bind xK_space $ do justMod $ - doc "Use the next layout in the layout list." $ sendMessage ToNextLayout + doc "Use the next layout in the layout list." $ sendMessage toNextLayout altMod $ - doc "Reset the layout to the default layout." $ sendMessage (SetLayout 0) + doc "Reset the layout to the default layout." $ sendMessage toFirstLayout shiftMod $ doc "Use the previous layout in the layout list." $ - sendMessage ToPreviousLayout + sendMessage toPreviousLayout bind xK_t $ do justMod $ -- cgit