()
| 423 | } |
| 424 | |
| 425 | async getCurrentFile() { |
| 426 | if (!vscode.window.activeTextEditor) { |
| 427 | return undefined; |
| 428 | } |
| 429 | return { |
| 430 | isUntitled: vscode.window.activeTextEditor.document.isUntitled, |
| 431 | path: vscode.window.activeTextEditor.document.uri.toString(), |
| 432 | contents: vscode.window.activeTextEditor.document.getText(), |
| 433 | }; |
| 434 | } |
| 435 | |
| 436 | async getPinnedFiles(): Promise<string[]> { |
| 437 | const tabArray = vscode.window.tabGroups.all[0].tabs; |