Fix tab completion for absolute paths

- Fix //tmp issue: distinguish slash commands from file paths by checking if anything precedes the /
- Fix symlinks to directories (like /tmp) not getting trailing slash
This commit is contained in:
Mario Zechner 2025-12-21 02:41:38 +01:00
parent bf51dd4126
commit 918750eb9e
3 changed files with 24 additions and 7 deletions

View file

@ -2,6 +2,14 @@
## [Unreleased]
## [0.25.1] - 2025-12-21
### Fixed
- **Gemini image reading broken**: Fixed the `read` tool returning images causing flaky/broken responses with Gemini models. Images in tool results are now properly formatted per the Gemini API spec.
- **Tab completion for absolute paths**: Fixed tab completion for absolute paths like `/tmp` producing `//tmp`. Also fixed inability to continue tabbing through subdirectories after completing an absolute path.
## [0.25.0] - 2025-12-20
### Added