move AppLauncher from Actions module to Prompt module

This commit is contained in:
zhen.sydow
2008-05-13 20:12:52 +00:00
parent 921097c9b5
commit ac6f1a66fe
2 changed files with 17 additions and 15 deletions

View File

@@ -1,16 +1,18 @@
{- | -----------------------------------------------------------------------------
Module : XMonad.Actions.AppLauncher -- |
Copyright : (C) 2008 Luis Cabellos -- Module : XMonad.Prompt.AppLauncher
License : None; public domain -- Copyright : (C) 2008 Luis Cabellos
-- License : BSD3
Maintainer : <zhen.sydow@gmail.com> --
Stability : unstable -- Maintainer : zhen.sydow@gmail.com
Portability : unportable -- Stability : unstable
-- Portability : unportable
A module for launch applicationes that receive parameters in the command line. --
The launcher call a prompt to get the parameters. -- A module for launch applicationes that receive parameters in the command
-} -- line. The launcher call a prompt to get the parameters.
module XMonad.Actions.AppLauncher ( -- * Usage --
-----------------------------------------------------------------------------
module XMonad.Prompt.AppLauncher ( -- * Usage
-- $usage -- $usage
launchApp launchApp
@@ -40,7 +42,7 @@ First, you need to import necessary modules. Prompt is used to get the promp
configuration and the AppLauncher module itself. configuration and the AppLauncher module itself.
> import XMonad.Prompt > import XMonad.Prompt
> import XMonad.Actions.AppLauncher as AL > import XMonad.Prompt.AppLauncher as AL
Then you can add the bindings to the applications. Then you can add the bindings to the applications.

View File

@@ -67,7 +67,6 @@ library
XMonad.Doc.Configuring XMonad.Doc.Configuring
XMonad.Doc.Extending XMonad.Doc.Extending
XMonad.Doc.Developing XMonad.Doc.Developing
XMonad.Actions.AppLauncher
XMonad.Actions.Commands XMonad.Actions.Commands
XMonad.Actions.ConstrainedResize XMonad.Actions.ConstrainedResize
XMonad.Actions.CopyWindow XMonad.Actions.CopyWindow
@@ -165,6 +164,7 @@ library
XMonad.Prompt.Directory XMonad.Prompt.Directory
XMonad.Prompt XMonad.Prompt
XMonad.Prompt.AppendFile XMonad.Prompt.AppendFile
XMonad.Prompt.AppLauncher
XMonad.Prompt.Input XMonad.Prompt.Input
XMonad.Prompt.Email XMonad.Prompt.Email
XMonad.Prompt.Layout XMonad.Prompt.Layout