diff options
Diffstat (limited to 'src/Internal/Keys.hs')
| -rw-r--r-- | src/Internal/Keys.hs | 6 |
1 files changed, 3 insertions, 3 deletions
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 $ |