mirror of
https://github.com/JakeWharton/mosaic.git
synced 2025-11-03 05:46:10 +08:00
Remove remaining mentions of stdinReader (#662)
This commit is contained in:
@ -52,7 +52,7 @@ public class TerminalReader internal constructor(
|
||||
* [escape code disambiguation](https://sw.kovidgoyal.net/kitty/keyboard-protocol/#disambiguate-escape-codes)
|
||||
* progressive-enhancement is enabled.
|
||||
*
|
||||
* Normally, when a bare escape (`0x1b`) is encountered as the final byte read from `stdinReader`,
|
||||
* Normally, when a bare escape (`0x1b`) is encountered as the final byte read from the input,
|
||||
* it is not possible to disambiguate this as the start of an escape sequence or as a bare
|
||||
* <kbd>Esc</kbd> key press. The parser will perform a fast disambiguation read to look for
|
||||
* additional bytes to try and guess. Setting this property to true eliminates the disambiguation
|
||||
|
||||
@ -13,7 +13,7 @@ import kotlinx.coroutines.GlobalScope
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.launch
|
||||
|
||||
class StdinReaderTest {
|
||||
class PlatformInputTest {
|
||||
private val writer = PlatformInputWriter()
|
||||
private val input = writer.input
|
||||
|
||||
Reference in New Issue
Block a user