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
Trying to define an action for Ctrl-Tab and Shift-Ctrl-Tab does not work.
editor.commands.addCommand({ name: "myamazingcommand", bindKey: {win: "Ctrl-Tab", mac: "Cmd-Tab"}, exec: function() { // amazing stuff } });
The function is not called when hitting Ctrl-Tab.
I am trying to define these keys for accessibility, to escape an Ace editor that captures tabs.
The text was updated successfully, but these errors were encountered:
ctrl-tab key is captured by chrome, and unfortunately they keep closing feature requests to add option to allow pages to use that keybinding.
Other browsers, like vivaldi, allow using ctrl-tab in web pages.
Sorry, something went wrong.
Thanks for letting me know. That's unfortunate. I described a workaround in #3149.
No branches or pull requests
Trying to define an action for Ctrl-Tab and Shift-Ctrl-Tab does not work.
The function is not called when hitting Ctrl-Tab.
I am trying to define these keys for accessibility, to escape an Ace editor that captures tabs.
The text was updated successfully, but these errors were encountered: