vty/test/ControlTable.hs
2014-04-11 17:51:13 -07:00

15 lines
494 B
Haskell

module Main where
import Graphics.Vty.ControlStrings
import System.Console.Terminfo
main = do
terminal <- setupTermFromEnv
controlTable <- init_controlTable terminal
putStrLn $ "ANSI terminal show cursor string: " ++ show cvis
putStrLn $ "Current terminal show cursor string: " ++ show (showCursorStr controlTable)
putStrLn $ "ANSI terminal hide cursor string: " ++ show civis
putStrLn $ "Current terminal hide cursor string: " ++ show (hideCursorStr controlTable)