Closed Herrox closed 5 years ago
@chabou :)
@chabou up :)
@chabou up up again, for this PR :)
Sorry for the delay. I was not very confortable to introduce a breaking change. But I haven't a smart solution to fix this issue in a different way.
@chabou I agree breaking changes is sometimes not a good solution, but I haven't any other solution too and seems to be the better here. Or if someone has a better one...
Otherwise, do you know if this feature will/could be included in Hyper core? Maybe that's a better way to do it
Ideally, Hyper-core could make easier for plugins to have different keymap per OS. But for now, we can implement it on plugin space. But I think it doesn't worth the overhead. Let's do this breaking change.
Users will restore their keymap in their config if needed.
I will merge your PR and make a major release ASAP.
Thank you for your help and your gentle reminder :pray:
Well noted for hyper-core. Super, can't wait for that major release !
Pas de soucis pour le reminder ;-) Au plaisir d'avoir pu aider.
Published as v2.0.0
I had to change your chosen hotkeys because cmd+alt+i
opens chrome dev tools on macOS.
Merci again for your help @Herrox 🙏
Hello,
I found an issue using this plugin on
Windows
(an probablyLinux
):hotkeys
are not working because they are declared withCommand
key. As explain on the following documentation https://github.com/electron/electron/blob/master/docs/api/accelerator.md#platform-notice,Command
key is specific toMacOS
and has no effect on bothWindows
andLinux
. So, I replaceCommand
withCommandOrControl
to make them work on all platforms.I also had to change hotkeys for
selectCurrentPane
andtoggleCurrentPane
hotkeys otherwise it was the same shortcut. So, I totally redefinedhotkeys
with random keys (u
,i
,o
andp
) but I am totally open to better ones.Waiting for your feedback.
Regards, Herrox.