vty/test/ControlTable.hs
2017-01-21 22:21:58 -08:00

15 lines
493 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)