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
feat: Add clickable links support for URLs in cells (#72)
- URLs (http, https, ftp, mailto) in cells are automatically detected and rendered as clickable links
- Ctrl/Cmd+click to open links in external browser
- New setting csv.clickableLinks (default: true) to toggle feature
- New command 'CSV: Toggle Clickable Links' in command palette
- Links don't interfere with cell editing or selection
Co-authored-by: jonaraphael <jona.raphael@gmail.com>
@@ -94,7 +96,8 @@ Global (Settings UI or `settings.json`):
94
96
-`csv.enabled` (boolean, default `true`): Enable/disable the custom editor.
95
97
-`csv.fontFamily` (string, default empty): Override font family; falls back to `editor.fontFamily`.
96
98
-`csv.cellPadding` (number, default `4`): Vertical cell padding in pixels.
97
-
- 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.
99
+
-`csv.clickableLinks` (boolean, default `true`): Make URLs in cells clickable. Ctrl/Cmd+click to open links.
100
+
- 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.
98
101
99
102
Per-file (stored by the extension; set via commands):
0 commit comments