diff options
| author | Josh Rahm <rahm@google.com> | 2022-04-08 15:07:58 -0600 |
|---|---|---|
| committer | Josh Rahm <rahm@google.com> | 2022-04-08 15:07:58 -0600 |
| commit | f1f5993a10d57674c635f0cf3b2ffe47f77e9d5c (patch) | |
| tree | f757a6d00ae767b5264d4ce0293940ed3f6fc481 /src/Internal/Keys.hs | |
| parent | 45176a8f89bcd1cb1c1d0bce33ed5a5495017c69 (diff) | |
| download | rde-f1f5993a10d57674c635f0cf3b2ffe47f77e9d5c.tar.gz rde-f1f5993a10d57674c635f0cf3b2ffe47f77e9d5c.tar.bz2 rde-f1f5993a10d57674c635f0cf3b2ffe47f77e9d5c.zip | |
More generic navigation and documentation.
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 $ |