mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 08:49:40 +03:00
Whitespace
This commit is contained in:
parent
11e0f2b0a2
commit
ee1bf20c37
@ -106,12 +106,13 @@ import Text.Parsec.Token ( GenLanguageDef(..) )
|
||||
import qualified Text.Parsec.Token as P
|
||||
|
||||
-- | Type of errors that can be thrown when configuring VTY
|
||||
data VtyConfigurationError
|
||||
= VtyMissingTermEnvVar -- ^ TERM environment variable not set
|
||||
deriving (Show, Eq, Typeable)
|
||||
data VtyConfigurationError =
|
||||
VtyMissingTermEnvVar
|
||||
-- ^ TERM environment variable not set
|
||||
deriving (Show, Eq, Typeable)
|
||||
|
||||
instance Exception VtyConfigurationError where
|
||||
displayException VtyMissingTermEnvVar = "TERM environment variable not set"
|
||||
displayException VtyMissingTermEnvVar = "TERM environment variable not set"
|
||||
|
||||
-- | Mappings from input bytes to event in the order specified. Later
|
||||
-- entries take precedence over earlier in the case multiple entries
|
||||
|
Loading…
Reference in New Issue
Block a user