Draft
Conversation
Truncation caused broken display with CJK characters (byte-based cut instead of display-width-aware). Rather than fixing the truncation logic, remove it entirely as full-length text is preferable. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
build_comment_entries における body_preview の60バイト切り詰め処理を削除し、UTF-8のCJK文字がバイト境界で分断されて表示が壊れる問題を解消するPRです。
Changes:
lua/fude/comments/data.luaからbody_previewの60バイト切り詰め処理を削除- それに対応していたテストケース(切り詰め検証)を削除
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| lua/fude/comments/data.lua | body_preview のバイト単位切り詰めを削除し、マルチバイト文字の途中切断を回避 |
| tests/fude/comments_spec.lua | 旧仕様(60バイト切り詰め)前提のテストケースを削除 |
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
build_comment_entriesのbody_previewで行っていた60文字バイト切り詰め処理を削除Test plan
make all(lint, format-check, test) パス確認済み🤖 Generated with Claude Code