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
@@ -97,6 +97,7 @@ Global (Settings UI or `settings.json`):
97
97
-`csv.fontFamily` (string, default empty): Override font family; falls back to `editor.fontFamily`.
98
98
-`csv.cellPadding` (number, default `4`): Vertical cell padding in pixels.
99
99
-`csv.clickableLinks` (boolean, default `true`): Make URLs in cells clickable. Ctrl/Cmd+click to open links.
100
+
-`csv.maxFileSizeMB` (number, default `10`): Soft limit for opening files in CSV view. If exceeded, CSV prompts: `Cancel`, `Continue This Time`, or `Ignore Forever` (sets this setting to `0`).
100
101
- Per-file encoding: use `CSV: Change File Encoding` to set a file's encoding (e.g., `utf8`, `utf16le`, `windows1250`, `gbk`). The extension will reopen the file using the chosen encoding.
101
102
102
103
Per-file (stored by the extension; set via commands):
Copy file name to clipboardExpand all lines: package.json
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,12 @@
114
114
"type": "boolean",
115
115
"default": true,
116
116
"description": "Make URLs in cells clickable. Ctrl/Cmd+click to open links."
117
+
},
118
+
"csv.maxFileSizeMB": {
119
+
"type": "number",
120
+
"default": 10,
121
+
"minimum": 0,
122
+
"description": "Soft max size in MB for opening files in CSV view. 0 disables the limit. When exceeded, CSV prompts to cancel, continue this time, or disable the limit."
0 commit comments