Add Windows console support - #140
Draft
nobu wants to merge 8 commits into
Draft
Conversation
Preserve native console input event data for Windows consumers.
`IO#console_input_events` preserves records that the old size change helper discards.
Add cross-platform cursor visibility operations so console users can hide the cursor while redrawing without platform-specific code.
Expose virtual terminal processing and line wrapping flags so console users can configure output without calling Win32 APIs directly.
Add `IO#input_pending?` so console users can detect queued input without consuming it or relying on platform-specific APIs.
Add a `timeout` option to `IO#console_input_events` so callers can wait for input while remaining responsive to Ruby interrupts.
Expose Windows input constants for console event consumers.
Let JRuby use Reline's native Windows path without Fiddle.
nobu
force-pushed
the
windows-console-support
branch
from
August 4, 2026 10:11
1d12f81 to
4f76df6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
IO#console_input_eventswith interruptible timeout support and expose Windows input event constantsIO#input_pending?for non-consuming readiness checksIO#check_winsize_changed, which discards unrelated console input recordsMotivation
Reline currently implements several Windows console operations directly through Fiddle. Providing these operations in io-console gives console consumers one native abstraction across CRuby and JRuby, preserves input records while detecting resize events, and allows blocking console input waits to remain interruptible.
Validation
rake testwith Ruby 4.0: 33 tests, 133 assertions