Revert "hack around a bug in claude code 0.2.70"#224
Open
mzihlmann wants to merge 1 commit into
Open
Conversation
The `x\b` workaround for the Claude Code 0.2.70 bracketed-paste echo bug now produces a visible stray `x` at the end of every prompt with current Claude Code. reverts: b732081
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.
Fixes #223.
The
x\bworkaround added in b732081 to mask Claude Code 0.2.70's bracketed-paste echo bug now produces a visible strayxat the end of every prompt with current Claude Code (2.1.x). The original commit message promised removal "a couple of days after the new version is released" — almost a year on, the hack is still here and is now actively breaking input (e.g. slash-command argument parsing receives/cmd argxinstead of/cmd arg).The companion
removeDuplicateClaude_0_2_70_Outputfunction from the original commit is already gone from the codebase, so this reverts only thelib/httpapi/claude.goportion.Verified locally against Claude Code 2.1.143: prompts render cleanly without the trailing
x, and slash-command arguments parse correctly.