packages feed

vty 5.0.0 → 5.0.1

raw patch · 9 files changed

+9/−2 lines, 9 files

Files

src/Codec/Binary/UTF8/Debug.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_HADDOCK hide #-} -- Copyright 2009 Corey O'Connor module Codec.Binary.UTF8.Debug      where
src/Data/Terminfo/Eval.hs view
@@ -1,6 +1,7 @@ {-# LANGUAGE BangPatterns #-} {-# LANGUAGE NoMonomorphismRestriction #-} {-# OPTIONS_GHC -funbox-strict-fields #-}+{-# OPTIONS_HADDOCK hide #-} {- Evaluates the paramaterized terminfo string capability with the given parameters.  -  -}
src/Data/Terminfo/Parse.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE BangPatterns #-}+{-# OPTIONS_HADDOCK hide #-} {-# LANGUAGE NoMonomorphismRestriction #-} {-# LANGUAGE NamedFieldPuns #-} {-# OPTIONS_GHC -funbox-strict-fields -O #-}
src/Graphics/Vty/Config.hs view
@@ -93,7 +93,7 @@ type InputMap = [(Maybe String, String, Event)]  data Config = Config-    { specifiedEscPeriod :: Maybe Int            +    { specifiedEscPeriod :: Maybe Int -- < See 'singleEscPeriod'     -- | Debug information is appended to this file if not Nothing.     , debugLog           :: Maybe FilePath     -- | The (input byte, output event) pairs extend the internal input table of VTY and the table
src/Graphics/Vty/Debug/Image.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_HADDOCK hide #-} module Graphics.Vty.Debug.Image where  import Graphics.Vty.Image
src/Graphics/Vty/Inline/Unsafe.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_HADDOCK hide #-} module Graphics.Vty.Inline.Unsafe where  import Graphics.Vty
src/Graphics/Vty/Input/Classify.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_HADDOCK hide #-} -- This makes a kind of tri. Has space efficiency issues with large input blocks. -- Likely building a parser and just applying that would be better. -- I did not write this so I might just rewrite it for better understanding. Which is not the best
src/Graphics/Vty/Input/Loop.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_HADDOCK hide #-} {-# LANGUAGE NoMonomorphismRestriction #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE CPP #-}
vty.cabal view
@@ -1,5 +1,5 @@ name:                vty-version:             5.0.0+version:             5.0.1 license:             BSD3 license-file:        LICENSE author:              AUTHORS