I am writing a VS Code extension where I want to open the settings window programmatically from my extension. I want the window to already have the search filled out to only
You can now pass an argument to the search, e.g.
vscode.commands.executeCommand( 'workbench.action.openSettings', 'editor.formatOnSaveTimeout' );
or
vscode.commands.executeCommand( 'workbench.action.openSettings', '' );