David Roundy
117c3bd6b1
remove myself as maintainer of CopyWindow.
...
I'm not sure who's maintaining this, but it's not me.
2008-04-09 14:43:33 +00:00
Spencer Janssen
1071d0a4e1
Generalize copyWindow, minor style change
2008-04-08 21:00:50 +00:00
Ivan N. Veselov
56031b1f63
XMonad.Actions.CopyWindow: added copyToAll and killAllOtherCopies functions
2008-04-08 19:51:11 +00:00
Lukas Mai
59fc99504f
XMonad.Actions.UpdatePointer: doc fix
2008-04-07 15:27:41 +00:00
Ian Zerny
ef25a538bf
Added next-window versions of the raise* functions.
2008-04-05 18:29:00 +00:00
Lukas Mai
1950a4e2cc
update contrib for applySizeHints changes
2008-04-04 22:05:58 +00:00
Brent Yorgey
5d352c8bf4
Actions/Search.hs: add dictionary.com search
2008-04-02 15:05:21 +00:00
gwern0
e170cfc611
improve WindowGo.hs Haddock formatting
2008-04-01 02:31:30 +00:00
gwern0
64396d85ab
WindowGo.hs: +raiseBrowser, raiseEditor
...
Specialize runOrRaise in the same way as with Actions.Search, for one's browser and one's editors.
2008-04-01 02:17:40 +00:00
gwern0
a4fb5d127f
Search.hs: remove an argument from selectSearch and promptSearch
...
The new getBrowser function allows us to mv the old selectSearch and promptSearch aside as too-general functions, and replace them with new versions, which employ getBrowser to supply one more argument. This allows us to replace the tedious 'selectSearch google "firefox"; selectSearch yahoo "firefox"...' with shorter 'selectSearch google' and so on. One less argument.
Also, update the docs.
2008-04-01 01:39:47 +00:00
Michal Janeczek
f77f71512b
XMonad.Actions.CycleRecentWS: initial import
2008-03-31 11:19:06 +00:00
Brent Yorgey
c857ebe29c
move Direction type from WindowNavigation to ManageDocks (ManageDocks will move into the core, taking Direction with it)
2008-03-31 01:01:27 +00:00
xmonad
1c6798a639
UpdatePointer: Make pointer position configurable.
2008-03-26 07:57:59 +00:00
Brent Yorgey
687c898c55
XMonad.Actions.Commands: documentation fix
2008-03-25 16:57:07 +00:00
Brent Yorgey
6fd03c107c
XMonad.Actions.Search: add Google Maps search
2008-03-24 14:33:48 +00:00
Lukas Mai
180298def6
XMonad.Actions.MouseGestures: reexport Direction from WindowNavigation, avoid type duplication
2008-03-22 19:34:57 +00:00
gwern0
929c9a1b56
WindowGo.hs: improve description
...
I'm still not sure whether the description makes sense if you don't already understand the idea.
2008-03-16 22:39:46 +00:00
gwern0
a97c325b8b
Search.hs: try to add a more descriptive type
2008-03-16 21:57:28 +00:00
gwern0
aca42e5ddb
improve the formatting for WindowGo.hs
2008-03-16 21:56:42 +00:00
gwern0
87bb590217
Search.hs: haddock fmt
...
This removes whitespace in source code snippets. Because Haddock renders quoted source code as monospaced unwrappable text, the excess whitespace meant you would have to scroll horizontally, unpleasantly.
2008-03-16 21:39:14 +00:00
xmonad
e216c95beb
Add XMonad.Actions.Promote
2008-03-16 20:57:22 +00:00
David Roundy
6da9d73f0d
add HiddenNonEmptyWS to CycleWS to avoid workspaces already visible.
2008-03-08 22:37:17 +00:00
nicolas.pouillard
7f8882faf2
Documentation typo about UpdatePointer.
2008-03-06 16:35:16 +00:00
Juraj Hercek
4f2e1927b0
Removed WmiiActions module.
2008-03-05 08:23:36 +00:00
robreim
d44253f17f
Changed semantics of UpdatePointer to move to nearest point
2008-03-01 14:31:26 +00:00
robreim
26de20d294
UpdatePointer XMonadContrib module
2008-03-01 13:44:01 +00:00
Roman Cheplyaka
11e57ce367
Add XMonad.Actions.PerWorkspaceKeys
2008-03-02 20:23:46 +00:00
David Roundy
93cf069aab
in Prompt.Workspace sort by official workspace order.
2008-02-29 22:30:47 +00:00
Lukas Mai
77476932c4
XMonad.Actions.MouseGestures.mkCollect: generalize type
2008-02-29 21:17:32 +00:00
Lukas Mai
2fb79e1d70
XMonad.Actions.MouseGestures: refactoring, code simplification
...
It is now possible to get "live" status updates while the gesture handler
is running. I use this in my xmonad.hs to print the current gesture to my
status bar. Because collecting movements is now the callback's job, the
implementation of mouseGestureH got quite a bit simpler. The interface is
incompatible with the previous mouseGestureH but the old mouseGesture
function works as before.
2008-02-29 00:21:36 +00:00
Lukas Mai
cdab5ae1c3
Xmonad.Actions.MouseGestures: generalize interface, allow hooks
2008-02-26 20:26:39 +00:00
Lukas Mai
09a12b46f6
update inactive debugging code in MouseGestures; no visible changes
2007-11-09 02:07:55 +00:00
Andrea Rossato
651acdbc3e
Refactor MouseResize, remove isDecoration and introduce isInStack, isVisible, isInvisible
...
This patch includes several changes, which are strictly related and
cannot be recorded separately:
- remove Decoraion.isDecoartion and introduce Decoration.isInStack
(with the related change to LayoutHints)
- in Decoration introduce useful utilities: isVisible, isInvisible,
isWithin and lookFor'
- MouseResize: - invisible inputOnly windows will not be created;
- fix a bug in the read instance which caused a failure
in the state deserialization.
2008-02-18 10:57:26 +00:00
Andrea Rossato
a7da5dd460
Prompt: add some methods to make completions more flexible
...
- now it is possible to decide if the prompt will complete the last
word of the command line or the whole line (default is the last
word);
- completing the last word can be fine tuned by implementing
'commandToComplete' and 'completionToCommand': see comments for
details;
- move mkComplFunFromList' from TagWindows to Prompt.
2008-02-16 13:34:54 +00:00
Andrea Rossato
c948559c53
Add Actions.MouseResize: a layout modifier to resize windows with the mouse
2008-02-12 17:34:55 +00:00
Brent Yorgey
8f71c70d37
WindowGo.hs: fix syntax in example
2008-02-09 22:51:35 +00:00
gwern0
37748e0b26
+doc for WindowGo.hs: I've discovered a common usecase for me for raiseMaybe
2008-02-05 03:21:55 +00:00
its.sec
3e5b16da3d
add swapScreen to CycleWS
...
* add support for swapping the workspaces on screens to CycleWS
2008-02-06 19:10:32 +00:00
gwern0
4c7a536465
XMonad.Actions.WindowGo: add a runOrRaise module for Joseph Garvin with the help of Spencer Janssen
2008-02-04 17:34:02 +00:00
Brent Yorgey
e6d229e8e1
CycleWS: change example binding for toggleWS from mod-t to mod-z. example bindings shouldn't conflict with default key bindings.
2008-02-01 20:21:26 +00:00
Brent Yorgey
5492a1265e
REMOVE RotView: use CycleWS instead.
...
See CycleWS docs for info on switching, or just look at the changes to
XMonad.Config.Droundy.
2008-02-01 18:06:18 +00:00
Brent Yorgey
1cfbd20de1
CycleWS: add more general functionality that now subsumes the functionality of RotView. Now with parameterized workspace sorting and predicates!
2008-02-01 12:15:24 +00:00
Brent Yorgey
e685c5d0ff
Search.hs: haddock cleanup
2008-01-31 16:19:48 +00:00
v.dijk.bas
f2877c4f20
Added a handy tip to the documentation of XMonad.Actions.Search
...
The tip explains how to use the submap action to create a handy submap of keybindings for searching.
2008-01-31 12:26:20 +00:00
Roman Cheplyaka
bb1fce547f
add XMonad.Actions.CycleSelectedLayouts
2008-01-16 20:50:20 +00:00
Brent Yorgey
63a63b3bd0
Search.hs: add documentation and two more search engines (MathWorld and Google Scholar)
2008-01-28 19:04:43 +00:00
Andrea Rossato
396ae4e77c
Action.Search: small haddock fixes
2008-01-13 09:26:46 +00:00
Joachim Fasting
9b0a2649b6
Correct caps in module header.
2007-12-30 06:19:20 +00:00
Joachim Fasting
8454e5d6b3
Use LANGUAGE pragma.
2007-12-30 06:18:17 +00:00
mail
35c5c1eaf0
shiftPrevScreen and shiftNextScreen, to make CycleWS consistent
2007-12-31 17:16:09 +00:00