You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ Global (Settings UI or `settings.json`):
100
100
-`csv.cellPadding` (number, default `4`): Vertical cell padding in pixels.
101
101
-`csv.columnColorMode` (string, default `type`): `type` keeps CSV’s type-based column colors; `theme` uses your theme foreground color for all columns.
102
102
-`csv.columnColorPalette` (string, default `default`): Type-color palette when `csv.columnColorMode` is `type`. `cool` biases colors toward greens/blues; `warm` biases colors toward oranges/reds.
103
+
-`csv.diffUseThemeForeground` (boolean, default `true`): In compare/diff views, use theme foreground color so diff highlighting remains readable.
103
104
-`csv.clickableLinks` (boolean, default `true`): Make URLs in cells clickable. Ctrl/Cmd+click to open links.
104
105
-`csv.showTrailingEmptyRow` (boolean, default `true`): Show the extra empty row at the end of the table. Turn this off to hide that visual append row.
105
106
-`csv.separatorMode` (string, default `extension`): Separator selection mode when no per-file override exists. `extension` uses extension mapping, `auto` detects from content first, `default` always uses `csv.defaultSeparator`.
Copy file name to clipboardExpand all lines: package.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,11 @@
140
140
"default": "default",
141
141
"description": "Type-color palette when csv.columnColorMode is 'type'. 'default' keeps the original palette, 'cool' biases colors toward greens/blues, and 'warm' biases colors toward oranges/reds."
142
142
},
143
+
"csv.diffUseThemeForeground": {
144
+
"type": "boolean",
145
+
"default": true,
146
+
"description": "When CSV is opened in a diff/compare view, use the current theme foreground color for cell text so diff highlighting stays visible."
0 commit comments