diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Doc/Extending.hs | 2 | ||||
-rw-r--r-- | XMonad/Util/Paste.hs (renamed from XMonad/Util/XPaste.hs) | 6 | ||||
-rw-r--r-- | xmonad-contrib.cabal | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/XMonad/Doc/Extending.hs b/XMonad/Doc/Extending.hs index 9bcad51..67dd8c6 100644 --- a/XMonad/Doc/Extending.hs +++ b/XMonad/Doc/Extending.hs @@ -490,7 +490,7 @@ A non complete list with a brief description: workspaces in various ways, used by several other modules which need to sort workspaces (e.g. "XMonad.Hooks.DynamicLog"). -* "XMonad.Util.XPaste" provides utilities for pasting or sending keys and +* "XMonad.Util.Paste" provides utilities for pasting or sending keys and strings to windows; * "XMonad.Util.XSelection" provide utilities for using the mouse diff --git a/XMonad/Util/XPaste.hs b/XMonad/Util/Paste.hs index a51a1e2..98ccd98 100644 --- a/XMonad/Util/XPaste.hs +++ b/XMonad/Util/Paste.hs @@ -1,5 +1,5 @@ {- | -Module : XMonad.Util.XPaste +Module : XMonad.Util.Paste Author : Jérémy Bobbio Copyright : (C) 2008 License : BSD3 @@ -12,7 +12,7 @@ A module for sending key presses to windows. This modules provides generalized and specialized functions for this task. -} -module XMonad.Util.XPaste where +module XMonad.Util.Paste where import XMonad (io, theRoot, withDisplay, X ()) import Graphics.X11 @@ -71,4 +71,4 @@ pasteKeyWindow mods key w = withDisplay $ \d -> do setKeyEvent ev w rootw none mods keycode True sendEvent d w True keyPressMask ev setEventType ev keyRelease - sendEvent d w True keyReleaseMask ev
\ No newline at end of file + sendEvent d w True keyReleaseMask ev diff --git a/xmonad-contrib.cabal b/xmonad-contrib.cabal index c74c00a..34e89c5 100644 --- a/xmonad-contrib.cabal +++ b/xmonad-contrib.cabal @@ -197,6 +197,6 @@ library XMonad.Util.Timer XMonad.Util.WindowProperties XMonad.Util.WorkspaceCompare - XMonad.Util.XPaste + XMonad.Util.Paste XMonad.Util.XSelection XMonad.Util.XUtils |