diff options
Diffstat (limited to '')
-rw-r--r-- | XMonad/Prompt/Shell.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/XMonad/Prompt/Shell.hs b/XMonad/Prompt/Shell.hs index c659787..d1ea150 100644 --- a/XMonad/Prompt/Shell.hs +++ b/XMonad/Prompt/Shell.hs @@ -15,7 +15,8 @@ module XMonad.Prompt.Shell ( -- * Usage -- $usage - shellPrompt + Shell (..) + , shellPrompt , getCommands , getBrowser , getEditor @@ -141,4 +142,4 @@ getBrowser = env "BROWSER" "firefox" -- | Like 'getBrowser', but should be of a text editor. This gets the $EDITOR variable, defaulting to \"emacs\". getEditor :: IO String -getEditor = env "EDITOR" "emacs"
\ No newline at end of file +getEditor = env "EDITOR" "emacs" |