mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-08 03:01:47 +00:00
review(copilot): say solid rule, not dashed
This commit is contained in:
parent
4689ace7cb
commit
50edbe6f46
1 changed files with 3 additions and 2 deletions
|
|
@ -102,8 +102,9 @@ const renderTable = (k: number, rows: string[][], t: Theme) => {
|
||||||
// (#15534). We avoid full borders on purpose — column widths come
|
// (#15534). We avoid full borders on purpose — column widths come
|
||||||
// from `stripInlineMarkup(...).length` (UTF-16 code units, not
|
// from `stripInlineMarkup(...).length` (UTF-16 code units, not
|
||||||
// display width), so a real outline often misaligns on emoji and
|
// display width), so a real outline often misaligns on emoji and
|
||||||
// East-Asian wide characters; one dim dashed rule under row 0 plus
|
// East-Asian wide characters; one dim solid rule (`─`) under row 0
|
||||||
// tab-style column gaps reads cleanly on every terminal we tested.
|
// plus tab-style column gaps reads cleanly on every terminal we
|
||||||
|
// tested.
|
||||||
const sep = widths.map(w => '─'.repeat(Math.max(1, w))).join(' ')
|
const sep = widths.map(w => '─'.repeat(Math.max(1, w))).join(' ')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue