File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
System/Console/Haskeline/Backend Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ Changed in version UNRELEASED:
2+
3+ * On Windows, when terminal-style and printing output, no longer skips
4+ `"\ESC...\STX"` sequences. (If used with legacy ConHost directly (for
5+ example, `conhost.exe cmd.exe`), it will require ConHost's ANSI-capability
6+ to be enabled separately.) (#126)
7+
18Changed in version 0.8.4.0:
29
310 * Added `System.Console.Haskeline.ReaderT` module for `ReaderT` interface.
Original file line number Diff line number Diff line change @@ -381,9 +381,7 @@ crlf :: String
381381crlf = " \r\n "
382382
383383instance (MonadMask m , MonadIO m , MonadReader Layout m ) => Term (Draw m ) where
384- drawLineDiff (xs1,ys1) (xs2,ys2) = let
385- fixEsc = filter ((/= ' \ESC ' ) . baseChar)
386- in drawLineDiffWin (fixEsc xs1, fixEsc ys1) (fixEsc xs2, fixEsc ys2)
384+ drawLineDiff = drawLineDiffWin
387385 -- TODO now that we capture resize events.
388386 -- first, looks like the cursor stays on the same line but jumps
389387 -- to the beginning if cut off.
You can’t perform that action at this time.
0 commit comments