You can use this module by importing it, along with
XMonad.Prompt, into your ~/.xmonad/xmonad.hs file:
import XMonad.Prompt
import XMonad.Prompt.Email
and adding an appropriate keybinding, for example:
, ((modMask x .|. controlMask, xK_e), emailPrompt defaultXPConfig addresses)
where addresses is a list of email addresses that should
autocomplete, for example:
addresses = ["me@me.com", "mr@big.com", "tom.jones@foo.bar"]
You can still send email to any address, but sending to these
addresses will be faster since you only have to type a few
characters and then hit 'tab'.
For detailed instructions on editing your key bindings, see
XMonad.Doc.Extending.
|