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 f092226 commit 92c01a5Copy full SHA for 92c01a5
src/services/taskfile.ts
@@ -136,7 +136,7 @@ class TaskfileService {
136
let filename = path.join(dir, filenames[i]);
137
if (fs.existsSync(filename)) {
138
log.info(`Opening taskfile: "${filename}"`);
139
- await vscode.commands.executeCommand('vscode.open', vscode.Uri.parse(filename), { preview: false });
+ await vscode.commands.executeCommand('vscode.open', vscode.Uri.file(filename), { preview: false });
140
return;
141
}
142
0 commit comments