René's URL Explorer Experiment


Title: fix: resolve CJK composition bug on iOS terminals (backspace packet splitting) by liante0904 · Pull Request #94 · lessweb/deepcode-cli · GitHub

Open Graph Title: fix: resolve CJK composition bug on iOS terminals (backspace packet splitting) by liante0904 · Pull Request #94 · lessweb/deepcode-cli

X Title: fix: resolve CJK composition bug on iOS terminals (backspace packet splitting) by liante0904 · Pull Request #94 · lessweb/deepcode-cli

Description: Why this is needed iOS terminal apps such as Moshi and Blink send CJK (Chinese, Japanese, Korean) composed characters in a single TCP packet when the iOS keyboard composes syllables. For example, when a user types the Korean syllable "가" followed by "나", the terminal may transmit the byte sequence: "가\x7f나" (character U+AC00 + backspace 0x7f + character U+B098) The current handleData in useTerminalInput.ts passes the entire concatenated buffer to parseTerminalInput() without splitting. Since parseTerminalInput treats the whole string as a single input event, the intermediate backspace (\x7f) is not interpreted as a delete action, and the composed character sequence gets corrupted. This results in garbled text and broken CJK input on iOS terminals. This is a long-standing, well-known issue affecting CJK users of Node.js TUI applications. What was changed In src/ui/prompt/useTerminalInput.ts, the handleData function now detects packets that contain one or more \x7f (backspace) bytes alongside other characters. When such a combined packet is received: The packet is split on \x7f. Each segment is dispatched individually through parseTerminalInput() and the input handler, in order: First the initial character(s) Then a properly parsed backspace event Then the subsequent character(s) (Repeating for multiple composition steps in a single packet) Normal input (without embedded backspaces) follows the original code path with zero overhead. Before const handleData = (data: Buffer | string) => { const { input, key } = parseTerminalInput(data); handlerRef.current(input, key); }; After const handleData = (data: Buffer | string) => { const raw = String(data); if (raw.includes("\x7f") && raw.length > 1) { const parts = raw.split("\x7f"); if (parts[0]) { const { input, key } = parseTerminalInput(parts[0]); handlerRef.current(input, key); } for (let i = 1; i < parts.length; i++) { const bs = parseTerminalInput("\x7f"); handlerRef.current(bs.input, bs.key); if (parts[i]) { const { input, key } = parseTerminalInput(parts[i]); handlerRef.current(input, key); } } return; } const { input, key } = parseTerminalInput(data); handlerRef.current(input, key); }; Testing npm run typecheck passes with no errors. eslint --fix and prettier --write pass via pre-commit hooks.

Open Graph Description: Why this is needed iOS terminal apps such as Moshi and Blink send CJK (Chinese, Japanese, Korean) composed characters in a single TCP packet when the iOS keyboard composes syllables. For example, w...

X Description: Why this is needed iOS terminal apps such as Moshi and Blink send CJK (Chinese, Japanese, Korean) composed characters in a single TCP packet when the iOS keyboard composes syllables. For example, w...

Opengraph URL: https://github.com/lessweb/deepcode-cli/pull/94

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:8d2148e5-2833-9f1c-4af1-6f3b554bce9e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idABE0:38840C:1CE67E:276098:6A4D3270
html-safe-nonce20dae1d60976bfa1d8c9187b9446fdea354a53c68083eb7c058f9764ae2ae836
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBQkUwOjM4ODQwQzoxQ0U2N0U6Mjc2MDk4OjZBNEQzMjcwIiwidmlzaXRvcl9pZCI6IjU5NzA2NzI5Njg5ODM3MjA1NjAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac9b24ba94f64177763049d922d0855bd31d7f6d50227215d60d20359e21028458
hovercard-subject-tagpull_request:3713477810
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/lessweb/deepcode-cli/pull/94/files
twitter:imagehttps://avatars.githubusercontent.com/u/17792485?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/17792485?s=400&v=4
og:image:altWhy this is needed iOS terminal apps such as Moshi and Blink send CJK (Chinese, Japanese, Korean) composed characters in a single TCP packet when the iOS keyboard composes syllables. For example, w...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None92571a8944142227b7e19cd10918b1ddd06e5066c1ad5bc7e4769cf6140a87e6
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/lessweb/deepcode-cli git https://github.com/lessweb/deepcode-cli.git
octolytics-dimension-user_id118287711
octolytics-dimension-user_loginlessweb
octolytics-dimension-repository_id1223512305
octolytics-dimension-repository_nwolessweb/deepcode-cli
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1223512305
octolytics-dimension-repository_network_root_nwolessweb/deepcode-cli
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release56fc8347865a14e2ec811533d68f929cf4e0ec19
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/lessweb/deepcode-cli/pull/94/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flessweb%2Fdeepcode-cli%2Fpull%2F94%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flessweb%2Fdeepcode-cli%2Fpull%2F94%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=lessweb%2Fdeepcode-cli
Reloadhttps://github.com/lessweb/deepcode-cli/pull/94/files
Reloadhttps://github.com/lessweb/deepcode-cli/pull/94/files
Reloadhttps://github.com/lessweb/deepcode-cli/pull/94/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/94/files
lessweb https://github.com/lessweb
deepcode-clihttps://github.com/lessweb/deepcode-cli
Notifications https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Fork 150 https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Star 1.7k https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Code https://github.com/lessweb/deepcode-cli
Issues 43 https://github.com/lessweb/deepcode-cli/issues
Pull requests 22 https://github.com/lessweb/deepcode-cli/pulls
Actions https://github.com/lessweb/deepcode-cli/actions
Projects https://github.com/lessweb/deepcode-cli/projects
Security and quality 0 https://github.com/lessweb/deepcode-cli/security
Insights https://github.com/lessweb/deepcode-cli/pulse
Code https://github.com/lessweb/deepcode-cli
Issues https://github.com/lessweb/deepcode-cli/issues
Pull requests https://github.com/lessweb/deepcode-cli/pulls
Actions https://github.com/lessweb/deepcode-cli/actions
Projects https://github.com/lessweb/deepcode-cli/projects
Security and quality https://github.com/lessweb/deepcode-cli/security
Insights https://github.com/lessweb/deepcode-cli/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Flessweb%2Fdeepcode-cli%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli%2Fissues%2Fnew%2Fchoose
qorzjhttps://github.com/qorzj
lessweb:mainhttps://github.com/lessweb/deepcode-cli/tree/main
liante0904:fix-ios-cjk-compositionhttps://github.com/liante0904/deepcode-cli/tree/fix-ios-cjk-composition
Conversation 0 https://github.com/lessweb/deepcode-cli/pull/94
Commits 1 https://github.com/lessweb/deepcode-cli/pull/94/commits
Checks 0 https://github.com/lessweb/deepcode-cli/pull/94/checks
Files changed https://github.com/lessweb/deepcode-cli/pull/94/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/94/files
fix: resolve CJK composition bug on iOS terminals (backspace packet splitting) https://github.com/lessweb/deepcode-cli/pull/94/files#top
Show all changes 1 commit https://github.com/lessweb/deepcode-cli/pull/94/files
bbf810d fix: resolve CJK composition bug on iOS terminals (backspace packet s… liante0904 May 20, 2026 https://github.com/lessweb/deepcode-cli/pull/94/commits/bbf810d1a55bfa2c45cdf576ed186f7d0c606715
Clear filters https://github.com/lessweb/deepcode-cli/pull/94/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/94/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/94/files
src/ui/prompt/useTerminalInput.tshttps://github.com/lessweb/deepcode-cli/pull/94/files#diff-f6c0e8110e67628fb13983eab6e596fb5615a429b47b89469c24555f64d90b26
View file https://github.com/liante0904/deepcode-cli/blob/bbf810d1a55bfa2c45cdf576ed186f7d0c606715/src/ui/prompt/useTerminalInput.ts
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/94/{{ revealButtonHref }}
https://github.com/lessweb/deepcode-cli/pull/94/files#diff-f6c0e8110e67628fb13983eab6e596fb5615a429b47b89469c24555f64d90b26
https://github.com/lessweb/deepcode-cli/pull/94/files#diff-f6c0e8110e67628fb13983eab6e596fb5615a429b47b89469c24555f64d90b26
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.