Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. withLastMinimized :: (Window -> X ()) -> X ()

    xmonad-contrib XMonad.Actions.Minimize

    Perform an action with last minimized window on current workspace or do nothing if there is no minimized windows on current workspace

  2. withLastMinimized' :: (Maybe Window -> X ()) -> X ()

    xmonad-contrib XMonad.Actions.Minimize

    Like withLastMinimized but the provided action is always invoked with a 'Maybe Window', that will be nothing if there is no last minimized window.

  3. repeatLast :: X ()

    xmonad-contrib XMonad.Actions.RepeatAction

    Runs the last remembered action. Be careful not to include this action in the remembered actions!

  4. getLastFocusedTopics :: X [Topic]

    xmonad-contrib XMonad.Actions.TopicSpace

    Deprecated: Use XMonad.Hooks.WorkspaceHistory.workspaceHistory (re-exported by this module) instead

  5. reverseLastFocusedTopics :: X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Reverse the list of "last focused topics"

  6. setLastFocusedTopic :: TopicConfig -> Topic -> (Topic -> Bool) -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Deprecated: Use XMonad.Hooks.WorkspaceHistory instead

  7. shiftNthLastFocused :: Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Shift the focused window to the Nth last focused topic, or fall back to doing nothing.

  8. switchNthLastFocused :: TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Switch to the Nth last focused topic or fall back to the defaultTopic.

  9. switchNthLastFocusedByScreen :: TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Like switchNthLastFocused, but only consider topics that used to be on the current screen. For example, the following function allows one to toggle between the currently focused and the last used topic, while treating different screens completely independently from one another.

    toggleTopicScreen = switchNthLastFocusedByScreen myTopicConfig 1
    

  10. switchNthLastFocusedExclude :: [Topic] -> TopicConfig -> Int -> X ()

    xmonad-contrib XMonad.Actions.TopicSpace

    Like switchNthLastFocused, but also filter out certain topics.

Page 250 of many | Previous | Next