We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7564040 commit f89f047Copy full SHA for f89f047
src/commands/openDataFile.ts
@@ -35,6 +35,12 @@ export async function registerOpenDataFileCommand(context: ExtensionContext) {
35
// open table view for the data file
36
commands.executeCommand(ViewCommands.viewTable, dataFileUri);
37
}
38
+ else if (fileExtension.length === 0) {
39
+ window.showErrorMessage(
40
+ `Tabular Data Viewer doesn't support data directory views yet.\
41
+ Use View Table menu option from VSCode File Explorer to open tabular data file in Table View.
42
+ Requested data directory: \`${dataFileUrl}\`.`);
43
+ }
44
else {
45
window.showErrorMessage(
46
`Tabular Data Viewer doesn't support ${fileExtension} data files.\
0 commit comments