aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ShellPrompt.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ShellPrompt.hs b/ShellPrompt.hs
index ecd8d56..b52fda8 100644
--- a/ShellPrompt.hs
+++ b/ShellPrompt.hs
@@ -60,7 +60,6 @@ getShellCompl s
| s /= "" && last s /= ' ' = do
f <- fmap lines $ runProcessWithInput "/bin/bash" [] ("compgen -A file " ++ s ++ "\n")
c <- commandCompletionFunction s
- hPutStrLn stdout s
return . map escape . sort . nub $ f ++ c
| otherwise = return []