aboutsummaryrefslogtreecommitdiffstats
path: root/ViewPrev.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ViewPrev.hs')
-rw-r--r--ViewPrev.hs26
1 files changed, 0 insertions, 26 deletions
diff --git a/ViewPrev.hs b/ViewPrev.hs
deleted file mode 100644
index 13a696b..0000000
--- a/ViewPrev.hs
+++ /dev/null
@@ -1,26 +0,0 @@
------------------------------------------------------------------------------
--- |
--- Module : XMonadContrib.ViewPrev
--- Copyright : (c) Nelson Elhage <nelhage@mit.edu>
--- License : BSD3-style (see LICENSE)
---
--- Maintainer : Nelson Elhage <nelhage@mit.edu>
--- Stability : unstable
--- Portability : unportable
---
--- A module that implements a command to switch to the previously
--- viewed workspace
---
------------------------------------------------------------------------------
-
-module XMonadContrib.ViewPrev (
- viewPrev
- ) where
-
-import XMonad
-import Operations
-import qualified StackSet as W
-
-viewPrev :: X ()
-viewPrev = windows viewPrev'
- where viewPrev' x = W.view (W.tag . head . W.hidden $ x) x