X.A.WindowBringer: Add haddocks for WindowBringerConfig

This commit is contained in:
Ivan Malison 2016-10-24 22:10:09 -07:00
parent 6cb10c9300
commit 4983ecfd23
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -46,9 +46,10 @@ import XMonad.Util.NamedWindows (getName)
-- For detailed instructions on editing your key bindings, see
-- "XMonad.Doc.Extending#Editing_key_bindings".
data WindowBringerConfig = WindowBringerConfig { menuCommand :: String
, menuArgs :: [String]
, windowTitler :: X.WindowSpace -> Window -> X String
data WindowBringerConfig = WindowBringerConfig
{ menuCommand :: String -- ^ The shell command that will handle window selection
, menuArgs :: [String] -- ^ Arguments to be passed to menuCommand
, windowTitler :: X.WindowSpace -> Window -> X String -- ^ A function that produces window titles given a workspace and a window
}
instance Default WindowBringerConfig where