-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Plugin hijacks "b" key even when not playing #3
Comments
…ey got blocked and the code is not triggered.
Thanks @brandonb927, for the bug report! This is indeed a quite annoying bug and sorry I didn't notice it earlier. Apparently, I forgot to register the event as |
I just freshly installed and if I load the game then go to "boss mode", I can't go back to typing. |
I'm all for hitting |
I just reinstalled atom-2048, still not able to use the "b" key even after quitting and starting Atom itself. I even uninstalled and reinstalled the plugin. Is there a debugging log I can provide? I haven't been using Atom a tonne lately and I haven't kept up with its progress. |
Sorry guys, I didn't do a through test before publishing the package. I'll try to fix it ASAP. Thanks for the report! |
The latest release seemed to fix this for me. (And somehow I didn't need 'b' when coding yesterday. Bizzare.) |
There you go guys, I've changed to |
Hey it's all good. Probably good to check to make sure it doesn't hijack escape for the find window. I actually tried changing the keymap so that it only worked when focused on atom-2048: diff --git a/keymaps/atom-2048.cson b/keymaps/atom-2048.cson
index 201eb0e..b6aa0b7 100644
--- a/keymaps/atom-2048.cson
+++ b/keymaps/atom-2048.cson
@@ -8,6 +8,8 @@
# For more detailed documentation see
# https://atom.io/docs/latest/advanced/keymaps
'.workspace':
- 'b': 'atom-2048:bossComing'
'ctrl-alt-a': 'atom-2048:toggle'
'ctrl-alt-b': 'atom-2048:bossAway'
+
+'.atom-2048':
+ 'b': 'atom-2048:bossComing' Doesn't seem like I ever get focus though. If it would have worked, I would have submitted a PR. |
Same here, this was my initial try to fix this issue. I don't know why the element |
Just installed the update, looks like its working great! Thanks so much for the support :) Feel free to close this unless anyone else is still having issues. |
Have fun and good luck! 🌝 |
I was slightly irritated when I installed 12+ Atom plugins (almost at once) to find that my "b" key on my Macbook had been hijacked! I narrowed it down to "atom-2048" (which I might add has completely destroyed my productivity thus far, but I digress), so is there a way to remap the b key to Esc or something?It happens even when I'm not playing the game. I haven't looked into the config options for the plugin so pardon me if this is something obvious.
The text was updated successfully, but these errors were encountered: