ShadowOfLoony

Results 1 comments of ShadowOfLoony

**Workaround** The issue is in `isOverWordChar()` method using ASCII-only `/\w/` regex. **One-line fix:** ```bash CLI_FILE=$(echo ~/.nvm/versions/node/v*/lib/node_modules/@anthropic-ai/claude-code/cli.js) && perl -i.backup -pe 's|return/\\w/\.test\(A\)\}isOverWhitespace\(\)|return/[\\p{L}\\p{N}_]/u.test(A)}isOverWhitespace()|' "$CLI_FILE" ``` Then restart `claude`. **To restore:** ```bash CLI_FILE=$(echo...