Thanks to visit codestin.com Credit goes to github.com
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 b382f33 commit c9a34edCopy full SHA for c9a34ed
src/actions/utils/openFiles.ts
@@ -16,9 +16,6 @@ const openFiles = async (files: string[]) => {
16
const absoluteFilePath = join(wr, filePath)
17
const doc = await vscode.workspace.openTextDocument(absoluteFilePath)
18
await vscode.window.showTextDocument(doc, vscode.ViewColumn.One)
19
- // there are times when initialization leave the panel behind any files opened
20
- // ensure the panel is redrawn on the right side first
21
- vscode.commands.executeCommand(COMMANDS.OPEN_WEBVIEW)
22
} catch (error) {
23
console.log(`Failed to open file ${filePath}: ${error.message}`)
24
}
0 commit comments