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 3a0c4fd commit f54ef3aCopy full SHA for f54ef3a
src/client/repl/nativeRepl.ts
@@ -205,18 +205,9 @@ function getOpenTabNames(): string[] {
205
206
for (const tabGroup of tabGroups) {
207
for (const tab of tabGroup.tabs) {
208
- if (tab.input instanceof TabInputText) {
209
- tabNames.push(tab.input.uri.fsPath);
210
- } else if (tab.input instanceof TabInputTextDiff) {
211
- if (tab.input.modified instanceof Uri) {
212
- tabNames.push(tab.input.modified.fsPath);
213
- }
214
- } else if (tab.input instanceof TabInputNotebook) {
215
216
+ tabNames.push(tab.label);
217
}
218
219
- const tabGroupTemp = tabGroups;
220
221
return tabNames;
222
0 commit comments