diff options
author | wirtwolff <wirtwolff@gmail.com> | 2009-03-03 00:07:41 +0100 |
---|---|---|
committer | wirtwolff <wirtwolff@gmail.com> | 2009-03-03 00:07:41 +0100 |
commit | ca2ff24a2ae3e2566c782a55879174ec47210090 (patch) | |
tree | 75995814730736a84487703d32217e974fc25b18 /XMonad/Util | |
parent | 0a1cecedb7cf41bcd040f721e911bb994365a167 (diff) | |
download | XMonadContrib-ca2ff24a2ae3e2566c782a55879174ec47210090.tar.gz XMonadContrib-ca2ff24a2ae3e2566c782a55879174ec47210090.tar.xz XMonadContrib-ca2ff24a2ae3e2566c782a55879174ec47210090.zip |
U.EZConfig: add xK_Print <Print> to special keys
Ignore-this: 9560b7c7c4424edb5cea6eec45e2b41d
Many setups are expecting xK_Print rather than
xK_Sys_Req, so make it available in additionalKeysP.
darcs-hash:20090302230741-d17f0-d238ee4d4b1977c4badae6ab8dde89590754be66.gz
Diffstat (limited to 'XMonad/Util')
-rw-r--r-- | XMonad/Util/EZConfig.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/XMonad/Util/EZConfig.hs b/XMonad/Util/EZConfig.hs index fff217d..b1c1bc5 100644 --- a/XMonad/Util/EZConfig.hs +++ b/XMonad/Util/EZConfig.hs @@ -175,6 +175,7 @@ removeMouseBindings conf mouseBindingList = -- > <Pause> -- > <Scroll_lock> -- > <Sys_Req> +-- > <Print> -- > <Escape>, <Esc> -- > <Delete> -- > <Home> @@ -438,6 +439,7 @@ specialKeys = [ ("Backspace" , xK_BackSpace) , ("Pause" , xK_Pause) , ("Scroll_lock", xK_Scroll_Lock) , ("Sys_Req" , xK_Sys_Req) + , ("Print" , xK_Print) , ("Escape" , xK_Escape) , ("Esc" , xK_Escape) , ("Delete" , xK_Delete) |