generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 321
fix:bug(prompts): fix error when truncating prompt description written in multibyte characters #3020
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
h16rkim
wants to merge
6
commits into
aws:main
Choose a base branch
from
h16rkim:fix/prompt-description-truncate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+94
−8
Conversation
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
- Replace byte-based string slicing with character-based truncation - Prevents panic when truncating multibyte characters (Korean, etc.) - Add comprehensive test coverage for UTF-8 boundary cases - Fix existing test compilation errors by adding missing fields
80f77f5
to
f6e0ab2
Compare
…n-truncate # Conflicts: # crates/chat-cli/src/cli/chat/cli/prompts.rs
…prove CJK character handling
h16rkim
commented
Oct 6, 2025
/// Truncates text to a maximum display width. | ||
/// Takes into account the display width of characters, where CJK characters are counted as 2 units | ||
/// wide. Returns the truncated text without ellipsis. | ||
pub fn truncate_safe_with_width(text: &str, max_width: usize) -> String { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
065f251
to
3c1ee5a
Compare
3c1ee5a
to
fe3fc2c
Compare
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.
Issue #, if available: #3117
Error Screenshot
Description of changes:
This issue does not occur in the currently released version(1.16.2). However, it can be reproduced on the current main branch.This error is occuring in the current released version (1.17.1)When executing the
/prompts list
command, there is a function that trims the description if it is too long. However, if the trim happens at the boundary of a multibyte character, a panic occurs and the program terminates.This PR fixes an issue that may occur in multibyte language systems such as Korean, Japanese, Chinese, Vietnamese, Thai, Arabic, emojis, etc..
After Applying this PR (Screenshot)
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.