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'm using atom-wallaby and tried to create a button to trigger one of the actions:
// configuration.js ... { type: 'popover', label: 'Wallaby', pathOfIcon: '/Users/dsofer/.atom/octicons/law.png', iconPosition: 'left', items: [ { type: 'button', label: 'Toggle', click() { dispatchAction('wallaby:toggle-panel', 'workspace', true); }, }, { type: 'button', label: 'Start', click() { dispatchAction('wallaby:start', 'workspace', true); }, }, { type: 'button', label: 'Stop', click() { dispatchAction('wallaby:stop', 'workspace', true); }, }, { type: 'button', label: 'Jump', click() { dispatchAction('wallaby:jump-to-error-source', 'workspace', true); }, }, { type: 'button', label: 'Open App', click() { dispatchAction('wallaby:open-wallaby-app', 'workspace', true); }, } ] } ...
All the commands work except for wallaby:jump-to-error-source and I'm not sure why.
wallaby:jump-to-error-source
The text was updated successfully, but these errors were encountered:
Nevermind, I had to change workspace to editor
workspace
editor
Sorry, something went wrong.
No branches or pull requests
I'm using atom-wallaby and tried to create a button to trigger one of the actions:
All the commands work except for
wallaby:jump-to-error-source
and I'm not sure why.The text was updated successfully, but these errors were encountered: