From 0ab42d4228354ff97f3d640cf99f15c2c386cec8 Mon Sep 17 00:00:00 2001 From: Keith Date: Tue, 13 Apr 2021 10:53:10 -0400 Subject: [PATCH] added export list to Operations. This includes Haddock sections that will make the documentation render differently. --- src/XMonad/Operations.hs | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/src/XMonad/Operations.hs b/src/XMonad/Operations.hs index 652a33b..e8249ae 100644 --- a/src/XMonad/Operations.hs +++ b/src/XMonad/Operations.hs @@ -14,7 +14,41 @@ -- ----------------------------------------------------------------------------- -module XMonad.Operations where +module XMonad.Operations ( + -- * Manage One Window + manage, unmanage, killWindow, kill, isClient, + setInitialProperties, setWMState, setWindowBorderWithFallback, + hide, reveal, tileWindow, + setTopFocus, focus, withFocused, + + -- * Manage Windows + windows, refresh, rescreen, modifyWindowSet, windowBracket, windowBracket_, clearEvents, getCleanedScreenInfo, + + -- * Keyboard and Mouse + cleanMask, extraModifiers, + mouseDrag, mouseMoveWindow, mouseResizeWindow, + setButtonGrab, setFocusX, + + -- * Messages + sendMessage, broadcastMessage, sendMessageWithNoRefresh, + + -- * Save and Restore State + StateFile (..), writeStateToFile, readStateFile, restart, + + -- * Floating Layer + float, floatLocation, + + -- * Window Size Hints + D, mkAdjust, applySizeHints, applySizeHints', applySizeHintsContents, + applyAspectHint, applyResizeIncHint, applyMaxSizeHint, + + -- * Rectangles + containedIn, nubScreens, pointWithin, scaleRationalRect, + + -- * Other Utilities + initColor, pointScreen, screenWorkspace, + setLayout, updateLayout, + ) where import XMonad.Core import XMonad.Layout (Full(..))