We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to add a status bar button to toggle wrapTabs . But it only invokes the toggle panel, not toggle the settings.
var right=0; var e=vscode_1.window.createStatusBarItem(vscode.StatusBarAlignment.Left); e.text = '$(extensions-view-icon)'; e.tooltip = 'Toggle Wrap Tabs'; e.command = { "title": "wrap", "command": "settings-toggle.toggle-workspace", "arguments": ["workbench.editor.wrapTabs"] ,"args": { "action": "toggle", "setting": "workbench.editor.wrapTabs" } }; e.color = 'yellow'; e.show();
The text was updated successfully, but these errors were encountered:
The extension doesn't yet read args command param.
args
Duplicate of #58
Sorry, something went wrong.
No branches or pull requests
I want to add a status bar button to toggle wrapTabs . But it only invokes the toggle panel, not toggle the settings.
The text was updated successfully, but these errors were encountered: