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
不同的场景只有个别键行为不一样,其余的都一样,能否实现多个scope继承同一个scope,或者有什么别的思路可以实现?
The text was updated successfully, but these errors were encountered:
you could wrap the hotkeys.setScope with your own function at startup and decide which other hotkeys need to be registered in that scope.
let originalSetScope = hotkeys.setScope.bind(hotkeys) hotkeys.setScope = function(scope) { originalSetScope(scope) registerYourOwnShortcuts(scope) }
Sorry, something went wrong.
No branches or pull requests
不同的场景只有个别键行为不一样,其余的都一样,能否实现多个scope继承同一个scope,或者有什么别的思路可以实现?
The text was updated successfully, but these errors were encountered: