titleShellF :: String -> F c d -> F (String ⊕ c) d titleShellF' :: (ShellF -> ShellF) -> String -> F c d -> F (String ⊕ c) d
titleShellF title fud
titleShellF creates a shell window with a dynamically changeable title. An argument
fudget determines the contents of the shell window.
titleShellF is useful in editors that wish to use the name of the file being
edited as the window title.
titleShellF' is a custimisable version of titleShellF.
Left t is input, the window title will be changed to
t. When Right x is input, x is passed to
fud.
fud.
title :: Stringfud :: F c d