Im working on a VSCode extension to get all paths to the files that are open in the editor.
Lets say I have these tabs open. One focused and another is not:
Is there a way to get the file paths to each file?
A array of path strings for example.
I found a answer that gave me the path to files that are opened and "focused":
var currentlyOpenTabfilePath = vscode.window.activeTextEditor?.document.uri.fsPath;
But how do I get the other paths?