Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- Fixed `readline` support: correct cursor position https://github.com/Textualize/rich/pull/4135

## [15.0.0] - 2026-04-12

### Changed
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ The following people have contributed to the development of Rich:
- [chthollyphile](https://github.com/chthollyphile)
- [Jonathan Helmus](https://github.com/jjhelmus)
- [Brandon Capener](https://github.com/bcapener)
- [Florent Xicluna](https://github.com/florentx)
- [Alex Zheng](https://github.com/alexzheng111)
- [Sebastian Speitel](https://github.com/SebastianSpeitel)
- [Kevin Turcios](https://github.com/KRRT7)
3 changes: 2 additions & 1 deletion rich/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -2186,7 +2186,8 @@ def input(
if stream:
result = stream.readline()
else:
result = input()
# Fix readline support: pass a non-empty string
result = input(" \b") # SPACE + BACKSPACE
return result

def export_text(self, *, clear: bool = True, styles: bool = False) -> str:
Expand Down