ShellPrompt: removed readline dependency and added escape character support

This commit is contained in:
Andrea Rossato
2007-10-05 11:22:50 +00:00
parent cfa8429450
commit 509416d0d4

View File

@@ -22,33 +22,26 @@ module XMonadContrib.ShellPrompt (
import XMonad import XMonad
import XMonadContrib.XPrompt import XMonadContrib.XPrompt
import XMonadContrib.Dmenu
import Control.Monad import Control.Monad
import Data.List import Data.List
import System.Console.Readline import System.Directory
import System.IO
import System.Environment import System.Environment
-- $usage -- $usage
-- --
-- 1. In xmonad.cabal change: -- 1. In Config.hs add:
--
-- > build-depends: base>=2.0, X11>=1.2.1, X11-extras>=0.2, mtl>=1.0, unix>=1.0
--
-- to
--
-- > build-depends: base>=2.0, X11>=1.2.1, X11-extras>=0.2, mtl>=1.0, unix>=1.0, readline >= 1.0
--
-- 2. In Config.hs add:
-- --
-- > import XMonadContrib.XPrompt -- > import XMonadContrib.XPrompt
-- > import XMonadContrib.ShellPrompt -- > import XMonadContrib.ShellPrompt
-- --
-- 3. In your keybindings add something like: -- 2. In your keybindings add something like:
-- --
-- > , ((modMask .|. controlMask, xK_x), shellPrompt defaultXPConfig) -- > , ((modMask .|. controlMask, xK_x), shellPrompt defaultXPConfig)
-- --
-- %cabalbuilddep readline>=1.0
-- %import XMonadContrib.XPrompt -- %import XMonadContrib.XPrompt
-- %import XMonadContrib.ShellPrompt -- %import XMonadContrib.ShellPrompt
-- %keybind , ((modMask .|. controlMask, xK_x), shellPrompt defaultXPConfig) -- %keybind , ((modMask .|. controlMask, xK_x), shellPrompt defaultXPConfig)
@@ -65,21 +58,25 @@ shellPrompt c = mkXPrompt Shell c getShellCompl spawn
getShellCompl :: String -> IO [String] getShellCompl :: String -> IO [String]
getShellCompl s getShellCompl s
| s /= "" && last s /= ' ' = do | s /= "" && last s /= ' ' = do
fl <- filenameCompletionFunction s f <- fmap lines $ runProcessWithInput "/bin/bash" [] ("compgen -A file " ++ s ++ "\n")
c <- commandCompletionFunction s c <- commandCompletionFunction s
return $ sort . nub $ fl ++ c hPutStrLn stdout s
return $ map escape . sort . nub $ f ++ c
| otherwise = return [] | otherwise = return []
commandCompletionFunction :: String -> IO [String] commandCompletionFunction :: String -> IO [String]
commandCompletionFunction str commandCompletionFunction str
| '/' `elem` str = return [] | '/' `elem` str = return []
| otherwise = do | otherwise = do
p <- getEnv "PATH" p <- getEnv "PATH"
cl p cl p
where where
cl = liftM (nub . rmPath . concat) . mapM fCF . map addToPath . split ':' cl = liftM (nub . rmPath . concat) . mapM cmpl . split ':'
addToPath = flip (++) ("/" ++ str) cmpl s = filter (isPrefixOf str) `fmap` getFileNames s
fCF = filenameCompletionFunction
getFileNames :: FilePath -> IO [FilePath]
getFileNames fp =
getDirectoryContents fp `catch` \_ -> return []
rmPath :: [String] -> [String] rmPath :: [String] -> [String]
rmPath s = rmPath s =
@@ -94,3 +91,12 @@ split e l =
rest s | s == [] = [] rest s | s == [] = []
| otherwise = tail s | otherwise = tail s
escape :: String -> String
escape [] = ""
escape (' ':xs) = "\\ " ++ escape xs
escape (x:xs)
| isSpecialChar x = '\\' : x : escape xs
| otherwise = x : escape xs
isSpecialChar :: Char -> Bool
isSpecialChar = flip elem "\\@\"'#?$*()[]{};"