Whitespace

This commit is contained in:
Jonathan Daugherty 2020-03-03 09:11:56 -08:00
parent 59f90de8b2
commit c4ab1e9b53

View File

@ -173,19 +173,19 @@ instance Semigroup Config where
} }
instance Monoid Config where instance Monoid Config where
mempty = Config mempty =
{ vmin = Nothing Config { vmin = Nothing
, vtime = Nothing , vtime = Nothing
, mouseMode = Nothing , mouseMode = Nothing
, bracketedPasteMode = Nothing , bracketedPasteMode = Nothing
, debugLog = mempty , debugLog = mempty
, inputMap = mempty , inputMap = mempty
, inputFd = Nothing , inputFd = Nothing
, outputFd = Nothing , outputFd = Nothing
, termName = Nothing , termName = Nothing
, termWidthMaps = [] , termWidthMaps = []
, allowCustomUnicodeWithTables = True , allowCustomUnicodeWithTables = True
} }
#if !(MIN_VERSION_base(4,11,0)) #if !(MIN_VERSION_base(4,11,0))
mappend = (<>) mappend = (<>)
#endif #endif