惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(tui): preserve code spans, code blocks, and dotted/hy...
RomneyDa · 2026-05-04 · via Recent Commits to openclaw:main

@@ -13,11 +13,17 @@ const URL_PREFIX_RE = /^(https?:\/\/|file:\/\/)/i;

1313

const WINDOWS_DRIVE_RE = /^[a-zA-Z]:[\\/]/;

1414

const FILE_LIKE_RE = /^[a-zA-Z0-9._-]+$/;

1515

const EDGE_PUNCTUATION_RE = /^[`"'([{<]+|[`"')\]}>.,:;!?]+$/g;

16+

const ALPHANUMERIC_RE = /[A-Za-z0-9]/;

1617

const TOKENISH_MIN_LENGTH = 24;

1718

const RTL_SCRIPT_RE = /[\u0590-\u08ff\ufb1d-\ufdff\ufe70-\ufefc]/;

1819

const BIDI_CONTROL_RE = /[\u202a-\u202e\u2066-\u2069]/;

1920

const RTL_ISOLATE_START = "\u2067";

2021

const RTL_ISOLATE_END = "\u2069";

22+

// Fenced code blocks (``` or ~~~). Lazy on content; tolerates info string after

23+

// the opening fence. Closing fence must sit on its own line.

24+

const FENCED_CODE_RE = /(```|~~~)[^\n]*\n[\s\S]*?\n\1[^\n]*/g;

25+

// Inline code spans with balanced backtick run (`code`, ``co`de``, ...).

26+

const INLINE_CODE_RE = /(`+)(?:(?!\1).)+?\1/g;

21272228

function hasControlChars(text: string): boolean {

2329

for (const char of text) {

@@ -62,24 +68,29 @@ function isCopySensitiveToken(token: string): boolean {

6268

const coreToken = token.replace(EDGE_PUNCTUATION_RE, "");

6369

const candidate = coreToken || token;

647065-

if (URL_PREFIX_RE.test(token)) {

71+

if (URL_PREFIX_RE.test(candidate)) {

6672

return true;

6773

}

6874

if (

69-

token.startsWith("/") ||

70-

token.startsWith("~/") ||

71-

token.startsWith("./") ||

72-

token.startsWith("../")

75+

candidate.startsWith("/") ||

76+

candidate.startsWith("~/") ||

77+

candidate.startsWith("./") ||

78+

candidate.startsWith("../")

7379

) {

7480

return true;

7581

}

76-

if (WINDOWS_DRIVE_RE.test(token) || token.startsWith("\\\\")) {

82+

if (WINDOWS_DRIVE_RE.test(candidate) || candidate.startsWith("\\\\")) {

7783

return true;

7884

}

79-

if (token.includes("/") || token.includes("\\")) {

85+

if (candidate.includes("/") || candidate.includes("\\")) {

8086

return true;

8187

}

82-

if (token.includes("_") && FILE_LIKE_RE.test(token)) {

88+

// Identifiers that look file-like, dotted, or hyphen/underscore-separated:

89+

// package names, entity IDs, kebab/snake CLI flags, dotted module paths.

90+

if (

91+

FILE_LIKE_RE.test(candidate) &&

92+

(candidate.includes("_") || candidate.includes("-") || candidate.includes("."))

93+

) {

8394

return true;

8495

}

8596

@@ -96,9 +107,50 @@ function normalizeLongTokenForDisplay(token: string): string {

96107

if (isCopySensitiveToken(token)) {

97108

return token;

98109

}

110+

// Pure symbol/punctuation runs (table borders made of `─`, `=`, `-`) carry

111+

// no copyable identifier; chunking would corrupt the visible structure.

112+

if (!ALPHANUMERIC_RE.test(token)) {

113+

return token;

114+

}

99115

return chunkToken(token, MAX_TOKEN_CHARS).join(" ");

100116

}

101117118+

type Segment = { kind: "prose" | "code"; text: string };

119+120+

function partitionByRegex(text: string, re: RegExp): Segment[] {

121+

const parts: Segment[] = [];

122+

let lastIndex = 0;

123+

for (const match of text.matchAll(re)) {

124+

const start = match.index ?? 0;

125+

if (start > lastIndex) {

126+

parts.push({ kind: "prose", text: text.slice(lastIndex, start) });

127+

}

128+

parts.push({ kind: "code", text: match[0] });

129+

lastIndex = start + match[0].length;

130+

}

131+

if (lastIndex < text.length) {

132+

parts.push({ kind: "prose", text: text.slice(lastIndex) });

133+

}

134+

return parts;

135+

}

136+137+

// Apply `transform` only to spans of `text` that are not inside fenced code

138+

// blocks or inline code spans. Code regions pass through verbatim so long

139+

// identifiers, dotted IDs, package names, and shell line-continuations the

140+

// user may copy stay byte-for-byte intact.

141+

function transformOutsideCode(text: string, transform: (segment: string) => string): string {

142+

const fenced = partitionByRegex(text, FENCED_CODE_RE);

143+

return fenced

144+

.map((seg) => {

145+

if (seg.kind === "code") {

146+

return seg.text;

147+

}

148+

const inline = partitionByRegex(seg.text, INLINE_CODE_RE);

149+

return inline.map((s) => (s.kind === "code" ? s.text : transform(s.text))).join("");

150+

})

151+

.join("");

152+

}

153+102154

function redactBinaryLikeLine(line: string): string {

103155

const replacementCount = (line.match(REPLACEMENT_CHAR_RE) || []).length;

104156

if (

@@ -149,7 +201,11 @@ export function sanitizeRenderableText(text: string): string {

149201

.join("\n")

150202

: withoutControlChars;

151203

const tokenSafe = LONG_TOKEN_TEST_RE.test(redacted)

152-

? redacted.replace(LONG_TOKEN_RE, normalizeLongTokenForDisplay)

204+

? transformOutsideCode(redacted, (segment) =>

205+

LONG_TOKEN_TEST_RE.test(segment)

206+

? segment.replace(LONG_TOKEN_RE, normalizeLongTokenForDisplay)

207+

: segment,

208+

)

153209

: redacted;

154210

return applyRtlIsolation(tokenSafe);

155211

}