Skip to content

Commit a6f00ed

Browse files
add custom perspectiveEditor to package.json (#65)
1 parent 2a9954e commit a6f00ed

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

package.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
"large data",
4141
"text data",
4242
"table view",
43-
"data streaming"
43+
"data streaming",
44+
"data perspective view"
4445
],
4546
"activationEvents": [
4647
"onLanguage:csv",
@@ -49,6 +50,7 @@
4950
"onCommand:tabular.data.viewTable",
5051
"onCommand:tabular.data.viewSettings",
5152
"onCustomEditor:tabular.data.tableEditor",
53+
"onCustomEditor:tabular.data.perspectiveEditor",
5254
"onWebviewPanel:tabular.data.tableView"
5355
],
5456
"main": "./dist/extension.js",
@@ -169,6 +171,22 @@
169171
"filenamePattern": "*.tab"
170172
}
171173
]
174+
},
175+
{
176+
"viewType": "tabular.data.perspectiveEditor",
177+
"displayName": "Perspective",
178+
"priority": "option",
179+
"selector": [
180+
{
181+
"filenamePattern": "*.csv"
182+
},
183+
{
184+
"filenamePattern": "*.tsv"
185+
},
186+
{
187+
"filenamePattern": "*.tab"
188+
}
189+
]
172190
}
173191
],
174192
"configuration": {

0 commit comments

Comments
 (0)