file name completion for command i

This commit is contained in:
kr.angelov
2008-06-05 12:12:44 +00:00
parent d970ed5224
commit 83cededff9
4 changed files with 10 additions and 5 deletions

View File

@@ -14,14 +14,14 @@
-- Uses the right readline library to read user input.
-----------------------------------------------------------------------------
module GF.System.Readline (fetchCommand, setCompletionFunction) where
module GF.System.Readline (fetchCommand, setCompletionFunction, filenameCompletionFunction) where
#ifdef USE_READLINE
import GF.System.UseReadline (fetchCommand, setCompletionFunction)
import GF.System.UseReadline
#else
import GF.System.NoReadline (fetchCommand, setCompletionFunction)
import GF.System.NoReadline
#endif