Fix workspace keybindings (screen off by one)
parent
a1ae3dace9
commit
4bd4bfe836
|
@ -200,9 +200,9 @@ myKeys =
|
||||||
(m, f) <- zip ["M-", "M-S-"]
|
(m, f) <- zip ["M-", "M-S-"]
|
||||||
[W.greedyView, W.shift],
|
[W.greedyView, W.shift],
|
||||||
(k, w) <- zip myWorkspaceKeys
|
(k, w) <- zip myWorkspaceKeys
|
||||||
(withScreen 0 myWorkspaces)
|
(withScreen 1 myWorkspaces)
|
||||||
++ zip mySharedWorkspaceKeys
|
++ zip mySharedWorkspaceKeys
|
||||||
(withScreen 1 mySharedWorkspaces)
|
(withScreen 2 mySharedWorkspaces)
|
||||||
]
|
]
|
||||||
|
|
||||||
zipKeyPrefixes :: [String] -> [String] -> [String]
|
zipKeyPrefixes :: [String] -> [String] -> [String]
|
||||||
|
|
Loading…
Reference in New Issue