1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
|
-- Wml: Window Management Language.
--
-- Parser for WML objects
--
-- Some examples of WML objects are:
--
-- a // The workspace or window (context dependent) tagged 'a'
-- @a // All windows on workspace 'a' or the workspace with window 'a'
-- ,. // The workspace to to the right of the current one.
-- @,. // All windows on the workspace to the right of the current one.
-- @,^ // All the windows on the screen second from the left
-- &z!~@,,^ // The window tagged with z and The last window on the screen third from the left
-- @@s // All the windows that share a workspace with the window tagged s
-- \%@s // All windows except those on workspace 's'
module Rahm.Desktop.Keys.Wml
( readWorkspaceMacro,
readWindowsetMacro,
readNextWorkspace,
readNextLocationSet,
readNextLocationSet',
moveLocationToWorkspace,
moveWindowsToWorkspaceFn,
getAndResetWindowSelection,
getAndResetWindowSelectionOrCurrent,
getWindowSelection,
gotoWorkspaceFn,
toggleWindowInSelection,
addWindowToSelection,
clearWindowSelection,
removeWindowFromSelection,
readMacroString,
justWorkspace,
justWorkspaceWithPreferredWindow,
blackHoleWorkspace,
alternateWorkspace,
floatWorkspace,
joinMaybe,
workspaceForKeys,
workspaceForStringT,
workspaceForString,
locationSetForKeysT,
locationSetForKeys,
readNextWorkspaceName,
workspaceName,
)
where
import Control.Monad (forM_, join, void, when)
-- getMostRecentLocationInHistory,
-- pastHistory,
import Control.Monad.Reader (ReaderT (runReaderT))
import Control.Monad.Trans.Class (MonadTrans (lift))
import Control.Monad.Trans.Maybe (MaybeT (..), mapMaybeT)
import Control.Monad.Trans.State as S
( StateT (StateT, runStateT),
evalState,
evalStateT,
get,
gets,
modify',
put,
)
import Data.Char (isAlpha, isAlphaNum, isDigit, ord)
import Data.List (find, intercalate, sortOn)
import Data.List.Safe (head, last)
import Data.Map (Map)
import qualified Data.Map as Map
import Data.Maybe (catMaybes, fromJust, fromMaybe, maybeToList)
import Data.Monoid (Endo (Endo, appEndo))
import Data.Ord (Down (..))
import Data.Typeable (cast)
import Data.Void (Void, absurd)
import Rahm.Desktop.BorderColors (BorderColor (BorderColor), setBorderColor)
import Rahm.Desktop.Common
( Location (..),
askWindowId,
getCurrentLocation,
getCurrentWorkspace,
gotoWorkspace,
moveLocationToWorkspace,
windowsInWorkspace,
)
import Rahm.Desktop.History
( lastLocation,
nextLocation,
)
import Rahm.Desktop.Keys.KeyFeed
import Rahm.Desktop.Layout.PinWindow (pinWindows, pinnedWindows, unpinWindow)
import Rahm.Desktop.Logger
import Rahm.Desktop.Marking
( farLeftWindow,
farRightWindow,
getAlternateWindows,
getAlternateWorkspace,
getMarkedLocations,
windowLocation,
)
import Rahm.Desktop.StackSet (StackSet (current))
import qualified Rahm.Desktop.StackSet as W
import Rahm.Desktop.Submap (mapNextStringWithKeysym)
import Rahm.Desktop.Workspaces
import Rahm.Desktop.XMobarLog.PendingBuffer
( addStringToPendingBuffer,
setPendingBuffer,
)
import System.Directory (doesFileExist)
import System.Exit (ExitCode (..), exitSuccess, exitWith)
import System.FilePath ((</>))
import System.IO (readFile)
import Text.Printf (printf)
import Text.Read (readMaybe)
import XMonad
( Default (def),
Directories' (dataDir),
ExtensionClass (..),
KeyMask,
KeySym,
MonadReader (ask),
StateExtension (PersistentExtension),
Typeable,
Window,
WindowSet,
WorkspaceId,
X,
asks,
clearArea,
directories,
io,
killWindow,
windows,
withWindowSet,
xK_Escape,
xK_Return,
)
import XMonad.Prompt.ConfirmPrompt (confirmPrompt)
import qualified XMonad.Util.ExtensibleState as XS (get, modify, put)
import Prelude hiding (head, last)
data MaybeMacros = NoMacros | YesMacros Macros
deriving (Read, Show)
data Macros = Macros
{ workspaceMacros :: Map (KeyMask, KeySym) KeyString,
windowsetMacros :: Map (KeyMask, KeySym) KeyString
}
deriving (Read, Show)
getMacroDataFile :: X FilePath
getMacroDataFile = asks ((</> "rde-recorded-macros") . dataDir . directories)
getMacros :: X Macros
getMacros = do
XS.get
>>= ( \case
NoMacros -> do
file <- getMacroDataFile
exists <- io $ doesFileExist file
if exists
then
io (readFile file)
>>= ( \s ->
let macros = fromMaybe (Macros mempty mempty) (readMaybe s :: Maybe Macros)
in XS.put (YesMacros macros) >> return macros
)
else return $ Macros mempty mempty
YesMacros macros -> return macros
)
saveMacros :: X ()
saveMacros = do
dataFile <- getMacroDataFile
macros <- getMacros
io $ writeFile dataFile $ show macros
selColor = BorderColor "#ffff00" "#b8b880"
insertWorkspaceMacroString :: (KeyMask, KeySym) -> KeyString -> X ()
insertWorkspaceMacroString k ks = do
macros <- getMacros
XS.put $
YesMacros $
macros
{ workspaceMacros = Map.insert k ks (workspaceMacros macros)
}
saveMacros
insertWindowSetMacroString :: (KeyMask, KeySym) -> KeyString -> X ()
insertWindowSetMacroString k ks = do
macros <- getMacros
XS.put $
YesMacros $
macros
{ windowsetMacros = Map.insert k ks (windowsetMacros macros)
}
saveMacros
instance ExtensionClass MaybeMacros where
initialValue = NoMacros
newtype WindowSelect = WindowSelect (Map Window (X ()))
instance ExtensionClass WindowSelect where
initialValue = WindowSelect mempty
toggleWindowInSelection :: Window -> X ()
toggleWindowInSelection win = do
(WindowSelect sel) <- XS.get
case Map.lookup win sel of
Nothing -> do
cleanup <- setBorderColor selColor [win]
XS.put $ WindowSelect $ Map.insert win cleanup sel
(Just cleanup) -> do
XS.put $ WindowSelect $ Map.delete win sel
cleanup
addWindowToSelection :: Window -> X ()
addWindowToSelection win = do
(WindowSelect sel) <- XS.get
case Map.lookup win sel of
Nothing -> do
foc <- withWindowSet (return . W.peek)
cleanup <- setBorderColor selColor [win]
XS.put $ WindowSelect $ Map.insert win cleanup sel
_ -> return ()
removeWindowFromSelection :: Window -> X ()
removeWindowFromSelection win = do
(WindowSelect sel) <- XS.get
case Map.lookup win sel of
(Just cleanup) -> do
XS.put $ WindowSelect $ Map.delete win sel
cleanup
_ -> return ()
clearWindowSelection :: X ()
clearWindowSelection = void getAndResetWindowSelection
getWindowSelection :: X [Window]
getWindowSelection = do
(WindowSelect mp) <- XS.get
return (Map.keys mp)
getAndResetWindowSelection :: X [Window]
getAndResetWindowSelection = do
(WindowSelect mp) <- XS.get
sequence_ (Map.elems mp)
XS.put (initialValue :: WindowSelect)
return (Map.keys mp)
getAndResetWindowSelectionOrCurrent :: X [Window]
getAndResetWindowSelectionOrCurrent = do
(WindowSelect mp) <- XS.get
if Map.null mp
then withWindowSet $ return . maybeToList . W.peek
else do
sequence_ (Map.elems mp)
XS.put (initialValue :: WindowSelect)
return (Map.keys mp)
data Workspace = forall a.
(Typeable a) =>
Workspace
{ moveWindowsToWorkspaceFn :: [Window] -> X (WindowSet -> WindowSet),
gotoWorkspaceFn :: X (),
workspaceName :: Maybe String,
accompanying :: Maybe Workspace,
workspaceWindows :: X [Location],
extraWorkspaceData :: a
}
forSingleWindow :: (Window -> X (WindowSet -> WindowSet)) -> [Window] -> X (WindowSet -> WindowSet)
forSingleWindow fn ws = appEndo . mconcat <$> mapM (fmap Endo . fn) ws
readWorkspaceMacro :: MaybeT X ()
readWorkspaceMacro =
mapNextStringWithKeysym $ \mask sym s -> do
when (sym == xK_Escape) $
fail ""
lift $ setPendingBuffer $ printf "Rec %s " s
macro <- readMacroString
lift $ insertWorkspaceMacroString (mask, sym) macro
readWindowsetMacro :: MaybeT X ()
readWindowsetMacro =
mapNextStringWithKeysym $ \mask sym s -> do
when (sym == xK_Escape) $
fail ""
lift $ setPendingBuffer $ printf "Rec %s " s
macro <- readMacroString
lift $ insertWindowSetMacroString (mask, sym) macro
readMacroString :: MaybeT X KeyString
readMacroString = do
mapNextStringWithKeysym $ \m k s -> case (m, k, s) of
_ | k == xK_Return -> return []
_ | k == xK_Escape -> MaybeT $ return Nothing
r -> do
lift $ addStringToPendingBuffer s
([r] ++) <$> readMacroString
justWorkspace :: String -> Workspace
justWorkspace s =
Workspace
{ moveWindowsToWorkspaceFn = forSingleWindow $ return . W.shiftWin s,
gotoWorkspaceFn = gotoWorkspace s,
workspaceName = Just s,
accompanying = Just $ justWorkspace $ accompanyingWorkspace s,
workspaceWindows = windowsInWorkspace s,
extraWorkspaceData = ()
}
justWorkspaceWithPreferredWindow :: Window -> String -> Workspace
justWorkspaceWithPreferredWindow w s =
Workspace
{ moveWindowsToWorkspaceFn = forSingleWindow $ return . W.shiftWin s,
gotoWorkspaceFn = do
windows $ \ws' ->
let ws = W.greedyView s ws'
l = W.integrate' $ W.stack $ W.workspace $ W.current ws
in if w `elem` l
then W.focusWindow w ws
else ws,
workspaceName = Just s,
accompanying = Just $ justWorkspace $ accompanyingWorkspace s,
workspaceWindows = windowsInWorkspace s,
extraWorkspaceData = ()
}
blackHoleWorkspace :: Workspace
blackHoleWorkspace =
Workspace
{ moveWindowsToWorkspaceFn = forSingleWindow $ \w -> killWindow w >> return id,
gotoWorkspaceFn =
confirmPrompt def "Do you want to exit xmonad" $ io exitSuccess,
workspaceName = Nothing,
accompanying = Nothing,
workspaceWindows = return [],
extraWorkspaceData = ()
}
alternateWorkspace :: Workspace
alternateWorkspace =
Workspace
{ moveWindowsToWorkspaceFn = forSingleWindow $ \win -> do
alter <- getAlternateWorkspace win
return $ \ss ->
maybe ss (\a -> W.shiftWin a win ss) alter,
gotoWorkspaceFn = do
(Location _ maybeWin) <- getCurrentLocation
case maybeWin of
Nothing -> return ()
Just win -> do
mapM_ gotoWorkspace =<< getAlternateWorkspace win,
workspaceName = Nothing,
accompanying = Nothing,
workspaceWindows =
let m Nothing = []
m (Just l) = l
in fmap m $
runMaybeT $
mapM windowLocation =<< lift getAlternateWindows,
extraWorkspaceData = ()
}
unpinningWorkspace :: Workspace
unpinningWorkspace =
Workspace
{ moveWindowsToWorkspaceFn = forSingleWindow $ \win -> do
unpinWindow win
return id,
gotoWorkspaceFn = return (),
workspaceName = Nothing,
accompanying = Just pinningWorkspace,
workspaceWindows = return [],
extraWorkspaceData = ()
}
pinningWorkspace :: Workspace
pinningWorkspace =
Workspace
{ moveWindowsToWorkspaceFn = \wins -> do
pinWindows wins
return id,
gotoWorkspaceFn = return (),
workspaceName = Nothing,
accompanying = Just unpinningWorkspace,
workspaceWindows = map (Location "*" . Just) <$> pinnedWindows,
extraWorkspaceData = ()
}
newtype FloatWorkspace = FloatWorkspace Workspace
floatWorkspace :: Workspace -> Workspace
floatWorkspace ws@Workspace {extraWorkspaceData = d} =
Workspace
{ moveWindowsToWorkspaceFn = \wins -> do
case cast d of
Just (FloatWorkspace ws') -> do
movefn <- moveWindowsToWorkspaceFn ws' wins
return $ (appEndo . mconcat $ map (Endo . W.sink) wins) . movefn
Nothing -> do
movefn <- moveWindowsToWorkspaceFn ws wins
return $ \ss -> do
appEndo
( mconcat $
map
( \win ->
Endo $
if win `Map.member` W.floating ss
then movefn
else
movefn
. W.float
win
( W.RationalRect
(1 / 8)
(1 / 8)
(6 / 8)
(6 / 8)
)
)
wins
)
ss,
gotoWorkspaceFn = gotoWorkspaceFn ws,
workspaceName = workspaceName ws,
accompanying = Just $ floatWorkspace ws,
workspaceWindows = workspaceWindows ws,
extraWorkspaceData = FloatWorkspace ws
}
joinMaybe :: (Monad m) => MaybeT m (Maybe a) -> MaybeT m a
joinMaybe (MaybeT ma) = MaybeT $ join <$> ma
-- Like the above, but unwrap the MaybeT
workspaceForKeysT :: KeyString -> MaybeT X Workspace
workspaceForKeysT str = runKeyFeedWithKeys str readNextWorkspace
-- Like the above, but unwrap the MaybeT
workspaceForKeys :: KeyString -> X (Maybe Workspace)
workspaceForKeys = runMaybeT . workspaceForKeysT
-- Returns a workspace for the given string. Note that workspaces which are
-- defined by special masks and symbols will not work. I.e. macros will not
-- work.
workspaceForStringT :: String -> MaybeT X Workspace
workspaceForStringT = workspaceForKeysT . map (\c -> (def, def, [c]))
workspaceForString :: String -> X (Maybe Workspace)
workspaceForString = runMaybeT . workspaceForStringT
-- Like the above, but unwrap the MaybeT
locationSetForKeysT :: KeyString -> MaybeT X [Location]
locationSetForKeysT s = runKeyFeedWithKeys s readNextLocationSet
locationSetForKeys :: KeyString -> X [Location]
locationSetForKeys s = fromMaybe [] <$> runMaybeT (locationSetForKeysT s)
readNextWorkspaceName :: KeyFeed WorkspaceId
readNextWorkspaceName = absorbMaybe $ workspaceName <$> readNextWorkspace
lift1 :: (a -> X b) -> (a -> KeyFeed b)
lift1 fn = liftXToFeed . fn
-- Returns the next workspaces associated with the next set of keystrokes, or
-- invokes the handler if the next stroke is not associated with WML command.
readNextWorkspace :: KeyFeed Workspace
readNextWorkspace =
readNextKey $ \key -> do
macros <- liftXToFeed $ workspaceMacros <$> getMacros
case key of
(mask, keysym, _)
| (Just macro) <- Map.lookup (mask, keysym) macros -> do
pushKeys macro
readNextWorkspace
(_, _, [ch])
| isAlphaNum ch || ch == '*' ->
return $ justWorkspace [ch]
(_, _, "[") ->
justWorkspace
<$> ( lift1 (adjacentWorkspaceNotVisible prev)
=<< readNextWorkspaceName
)
-- to the non-visible workspace right of the next workspace
(_, _, "]") ->
justWorkspace
<$> ( lift1 (adjacentWorkspaceNotVisible next)
=<< readNextWorkspaceName
)
-- To the left of the next workspace
(_, _, "(") ->
justWorkspace
<$> ( lift1 (adjacentWorkspace prev)
=<< readNextWorkspaceName
)
-- To the right of the next workspace
(_, _, ")") ->
justWorkspace
<$> ( lift1 (adjacentWorkspace next)
=<< readNextWorkspaceName
)
-- The workspace on the leftmost screen
(_, _, "^") ->
liftXMaybe $
withWindowSet $ \ws ->
return $
( fmap
( justWorkspace . W.tag . W.workspace . snd
)
. head
)
(getHorizontallyOrderedScreens ws)
-- The last workspace in history.
(_, _, "'") ->
justWorkspace . locationWorkspace <$> liftXMaybe lastLocation
-- The current workspace.
(_, _, ".") ->
liftXToFeed $ justWorkspace <$> getCurrentWorkspace
-- The workspace on the rightmost screen
(_, _, "$") ->
liftXMaybe $
withWindowSet $ \ws ->
return $
(fmap (justWorkspace . W.tag . W.workspace . snd) . last)
(getHorizontallyOrderedScreens ws)
-- Modify the next workspace as a "floating" workspace. (Windows sent to
-- it will float).
(_, _, ":") ->
floatWorkspace <$> readNextWorkspace
-- Workspace to the next screen to the right of the next workspace.
(_, _, ",") -> do
ws <- readNextWorkspace
screens <-
liftXToFeed $
map (W.tag . W.workspace . snd)
<$> withWindowSet (return . getScreensOnSamePlane)
let (_, rest) = break ((== workspaceName ws) . Just) (screens ++ screens)
justWorkspace <$> hoistMaybe (head $ tail rest)
-- Workspace on the screen above the current workspace..
(_, _, "+") -> do
screens <-
liftXToFeed $
map (W.tag . W.workspace . snd)
<$> withWindowSet (return . getScreensOnDifferentPlane)
justWorkspace <$> hoistMaybe (head screens)
-- Workspace to the next screen to the left of the next workspace.
(_, _, ";") -> do
ws <- readNextWorkspace
screens <-
liftXToFeed $
map (W.tag . W.workspace . snd)
<$> withWindowSet (return . reverse . getHorizontallyOrderedScreens)
let (_, rest) = break ((== workspaceName ws) . Just) (screens ++ screens)
justWorkspace <$> hoistMaybe (head $ tail rest)
-- The workspace with the searched for window.
(_, _, "/") ->
justWorkspace
<$> ( (liftXMaybe . workspaceWithWindow) =<< liftXMaybe (head <$> askWindowId)
)
-- The workspace with the next read window on it.
(_, _, "@") -> do
loc <- readNextLocationSet
liftXMaybe $
withWindowSet $ \ws -> return $ do
win <- locationWindow =<< head loc
winLocation <- W.findWindow ws win
justWorkspaceWithPreferredWindow win . W.tag <$> W.getLocationWorkspace winLocation
-- The accompanying worksapce to the next read workspace.
(_, _, "~") ->
absorbMaybe $ accompanying <$> readNextWorkspace
-- The accompanying workspace to the current workspace (equivalent to ~.)
(_, _, " ") ->
liftXToFeed $
justWorkspace . accompanyingWorkspace <$> getCurrentWorkspace
-- The balck hole workspace
(_, _, "_") ->
return blackHoleWorkspace
-- The alternate workspace
(_, _, "-") ->
return alternateWorkspace
(_, _, "#") ->
return pinningWorkspace
-- If the next two read workspaces are equal, go to the third workspace
-- otherwise go to the fourth workspace.
(_, _, "=") -> do
ws1 <- readNextWorkspace
ws2 <- readNextWorkspace
ws3 <- readNextWorkspace
ws4 <- readNextWorkspace
return $
if workspaceName ws1 == workspaceName ws2
then ws3
else ws4
-- If the next read location set is not empty, go to the next read
-- workspace, otherwise go to the next-next read workspace.
(_, _, "?") -> do
l1 <- readNextLocationSet
ws1 <- readNextWorkspace
ws2 <- readNextWorkspace
return $
if null l1
then ws2
else ws1
_ -> feedFail
nonempty :: (Monad m) => m [a] -> MaybeT m [a]
nonempty l = MaybeT $ do
l
>>= ( \case
[] -> return Nothing
a -> return (Just a)
)
readNextLocationSet :: KeyFeed [Location]
readNextLocationSet = do
(WindowSelect mp) <- liftXToFeed XS.get
case Map.keys mp of
[] -> readNextLocationSet'
wins -> do
liftXToFeed $ addStringToPendingBuffer "<sel> "
mapM (hoistMaybeT . windowLocation)
=<< liftXToFeed getAndResetWindowSelection
-- Like readNextLocationSet, but ignores the window selection.
readNextLocationSet' :: KeyFeed [Location]
readNextLocationSet' =
readNextKey $ \key -> do
macros <- liftXToFeed $ windowsetMacros <$> getMacros
case key of
-- Macros takes precedence.
(mask, keysym, _) | (Just macro) <- Map.lookup (mask, keysym) macros -> do
hoistMaybeT $ locationSetForKeysT macro
-- A character is the base-case. Refers to a collection of windows.
(_, _, [ch]) | isAlpha ch -> liftXToFeed $ getMarkedLocations [ch]
-- Goes to the most recent location in history.
-- (_, _, "0") -> (: []) <$> MaybeT (fromX getMostRecentLocationInHistory)
-- A Digit goes to the past history.
-- (_, _, [ch])
-- | isDigit ch ->
-- (: []) <$> MaybeT (fromX $ pastHistory (ord ch - 0x30))
-- The current window.
(_, _, ".") -> (: []) <$> liftXToFeed getCurrentLocation
-- The selected windows in the selection set.
(_, _, "#") ->
liftXToFeed $ map (Location "*" . Just) <$> pinnedWindows
-- The window on the far-left of the screens.
(_, _, "^") -> (: []) <$> hoistMaybeT farLeftWindow
-- The windows on the far-right of the screens.
(_, _, "$") -> (: []) <$> hoistMaybeT farRightWindow
-- The next location in history.
(_, _, "\"") -> (: []) <$> liftXMaybe nextLocation
-- The previous location in history.
(_, _, "'") -> (: []) <$> liftXMaybe lastLocation
-- All visible windows.
(_, _, "*") -> liftXToFeed $ do
wins <- withWindowSet $ return . W.allVisibleWindows
catMaybes <$> mapM (runMaybeT . windowLocation) wins
-- The last referenced windows.
(_, _, "-") ->
hoistMaybeT $
mapM windowLocation =<< lift getAlternateWindows
-- Search for the windows.
(_, _, "/") ->
hoistMaybeT $
mapM windowLocation =<< nonempty askWindowId
-- All windows.
(_, _, "%") ->
hoistMaybeT $
mapM windowLocation =<< lift (withWindowSet (return . sortOn Down . W.allWindows))
-- Windows in a workspace
(_, _, s)
| s == "\t" || s == "@" || s == "\n" ->
(liftXToFeed . workspaceWindows) =<< readNextWorkspace
-- The first window in the next window set.
(_, _, "!") -> (: []) <$> absorbMaybe (head <$> readNextLocationSet)
-- The windows except the first in a window set.
(_, _, ",") -> tail <$> readNextLocationSet
-- The next window set, but reversed
(_, _, "~") -> reverse <$> readNextLocationSet
-- All the floating windows
(_, _, ":") ->
liftXToFeed $
withWindowSet $
fmap catMaybes
. mapM (runMaybeT . windowLocation)
. Map.keys
. W.floating
-- If the next read window set is not empty, then this location
-- otherwise the next read location.
(_, _, "?") -> do
l1 <- readNextLocationSet
l2 <- readNextLocationSet
return $ if null l1 then l2 else l1
-- The next window set unioned with the next location set
(_, _, "|") -> do
l1 <- readNextLocationSet
l2 <- readNextLocationSet
return (l1 ++ l2)
-- Empty window set.
(_, _, "_") -> return []
-- The next location set differenced with the next-next location set
(_, _, "\\") -> do
l1 <- readNextLocationSet
l2 <- readNextLocationSet
return $ filter (not . flip elem l2) l1
-- The next location set intersected with the next-next location set
(_, _, "&") -> do
l1 <- readNextLocationSet
l2 <- readNextLocationSet
return $ filter (`elem` l2) l1
_ -> feedFail
|