diff --git a/pregame.cabal b/pregame.cabal
--- a/pregame.cabal
+++ b/pregame.cabal
@@ -1,5 +1,5 @@
 name: pregame
-version: 0.1.4.1
+version: 0.1.4.2
 synopsis: Prelude counterpart
 description: Excessive Prelude styled imports.
 homepage: https://github.com/jxv/pregame
@@ -35,6 +35,7 @@
     transformers,
     text,
     tuple,
-    vector
+    vector,
+    cmdtheline
   hs-source-dirs: src
   default-language: Haskell2010
diff --git a/src/Pregame.hs b/src/Pregame.hs
--- a/src/Pregame.hs
+++ b/src/Pregame.hs
@@ -31,6 +31,7 @@
     , module System.IO.Error 
     , module Safe 
     , module Safe.Exact 
+    , module System.Console.CmdTheLine
     , Cont, ContT
     --
     , Error, ErrorT
@@ -91,7 +92,8 @@
 import System.IO 
 import System.IO.Error 
 import Safe hiding (at)
-import Safe.Exact 
+import Safe.Exact
+import System.Console.CmdTheLine hiding (enum, lastOf)
 
 import Control.Monad.Trans.Cont (Cont, ContT)
 import Control.Monad.Trans.Error (Error, ErrorT)
