Skip to content

Commit decdc29

Browse files
committed
Make compatible with Cursor
1 parent b207223 commit decdc29

File tree

3 files changed

+11
-19
lines changed

3 files changed

+11
-19
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to the "CSV" extension will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.1.1] - 2025-06-11
7+
## [1.1.2] - 2025-06-11
88
- Fixed: fontFamily
99

1010
## [1.1.0] - 2025-06-11

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Working with CSV files shouldn’t be a chore. With CSV, you get:
7373

7474
## Release Notes
7575

76-
### v1.1.1
76+
### v1.1.2
7777
- **Fixed:** fontFamily
7878

7979
### v1.1.0

package.json

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@
88
"type": "git",
99
"url": "https://github.com/jonaraphael/csv.git"
1010
},
11-
"version": "1.1.1",
11+
"version": "1.1.2",
1212
"engines": {
13-
"vscode": "^1.100.0",
13+
"vscode": "^1.96.0",
1414
"node": ">=14"
1515
},
16-
"categories": [
17-
"Data Science",
18-
"Programming Languages",
19-
"Other"
20-
],
16+
"categories": ["Data Science", "Programming Languages", "Other"],
2117
"activationEvents": [
2218
"onLanguage:csv",
2319
"onCommand:csv.toggleExtension",
@@ -31,8 +27,8 @@
3127
"languages": [
3228
{
3329
"id": "csv",
34-
"extensions": [ ".csv" ],
35-
"aliases": [ "CSV", "csv" ],
30+
"extensions": [".csv"],
31+
"aliases": ["CSV", "csv"],
3632
"configuration": "./language-configuration.json"
3733
}
3834
],
@@ -43,7 +39,6 @@
4339
{ "command": "csv.changeSeparator", "title": "CSV: Change CSV Separator" },
4440
{ "command": "csv.changeFontFamily", "title": "CSV: Change Font Family" }
4541
],
46-
4742
"configuration": {
4843
"type": "object",
4944
"title": "CSV Extension Configuration",
@@ -68,31 +63,27 @@
6863
"default": ",",
6964
"description": "CSV separator to use."
7065
},
71-
7266
"csv.fontFamily": {
7367
"type": "string",
7468
"default": "",
7569
"description": "Font family used by the CSV custom editor. Leave empty to inherit ‘editor.fontFamily’.",
7670
"scope": "application"
7771
},
78-
7972
"csv.cellPadding": {
8073
"type": "number",
8174
"default": 4,
8275
"description": "Vertical padding in pixels for table cells."
8376
}
8477
}
8578
},
86-
8779
"customEditors": [
8880
{
8981
"viewType": "csv.editor",
9082
"displayName": "CSV",
91-
"selector": [ { "filenamePattern": "*.csv" } ]
83+
"selector": [{ "filenamePattern": "*.csv" }]
9284
}
9385
]
9486
},
95-
9687
"scripts": {
9788
"compile": "tsc -p ./",
9889
"lint": "eslint '**/*.ts'",
@@ -107,10 +98,11 @@
10798
"@types/mocha": "^10.0.10",
10899
"@types/node": "^20.11.19",
109100
"@types/papaparse": "^5.3.16",
110-
"@types/vscode": "^1.100.0",
101+
"@types/vscode": "^1.96.0",
111102
"@typescript-eslint/eslint-plugin": "^7.9.0",
112103
"@typescript-eslint/parser": "^7.9.0",
113104
"eslint": "^8.57.0",
114-
"typescript": "^4.4.3"
105+
"typescript": "^4.4.3",
106+
"vscode": "^1.1.37"
115107
}
116108
}

0 commit comments

Comments
 (0)