Remove remaining mentions of stdinReader (#662)

This commit is contained in:
Jake Wharton
2025-01-24 16:18:38 -05:00
committed by GitHub
parent e1387c24a1
commit 163de9ca77
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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