tabby
tabby copied to clipboard
Why is the `Ctrl + Click` shortcut bound to `Right Click`
Is your feature request related to a problem? Please describe.
Why is the Ctrl + Click
shortcut bound to Right Click
here?
https://github.com/Eugeny/tabby/blob/aab7e285a901da63ad662a5686a64c5fd72a2711/tabby-terminal/src/api/baseTerminalTab.component.ts#L712
https://github.com/Eugeny/tabby/blob/aab7e285a901da63ad662a5686a64c5fd72a2711/tabby-terminal/src/api/baseTerminalTab.component.ts#L718
Describe the solution you'd like There are no such common shortcuts under Windows, and Ctrl + Click sometimes conflicts with the "Open URL" shortcut. If this is an operating system-specific issue or tradition, I think it can be combined with the operating system, not for all users.
Describe alternatives you've considered I think it will be better:
if (event.which === 3) {
XXX
}