diff options
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Prompt/Shell.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/XMonad/Prompt/Shell.hs b/XMonad/Prompt/Shell.hs index be928ee..c659787 100644 --- a/XMonad/Prompt/Shell.hs +++ b/XMonad/Prompt/Shell.hs @@ -139,5 +139,6 @@ env variable fallthrough = getEnv variable `catch` \_ -> return fallthrough getBrowser :: IO String 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 |