Can't unbind some keys
See original GitHub issueF10
is bound to Step Over
but it doesn’t work because it’s bound to Focus Application Menu
. Rebinding Focus Application Menu
just creates a new keybinding instead of changing the default so there’s no way to work around this currently.
See https://github.com/cdr/code-server/discussions/2070 for more details.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:13 (3 by maintainers)
Top Results From Across the Web
Can't unbind some keys · Issue #2079 · coder/code-server
Go to File/Preferences/Keyboard Shortcuts. Click on 'Open Keyboard Shortcuts (JSON)' icon. Paste the next code:.
Read more >PC | Destiny 2: How do I unbind Keys? > Help - Game Issues
In your settings where you set the keybinds, set the charged and uncharged melee to the same key (+ on numpad for example)...
Read more >Need some key binding help. I can't unbind "e" from " ...
Try typing "unbind e" into the console. It should rid it of any binds it currently has.
Read more >Can't unbind any keys on console OW2 beta
My left dpad is stuck on “push to talk” and I can't unbind it, even though it says that it's binded to “ping”...
Read more >Can't change key binds. :: Halo Infinite General Discussions
And no way to clear bindings. EDIT: I just reset all my keys and restarted the game.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For now, to make F10 works for
Step Over
, you can patch file<code-server>/lib/vscode/out/vs/workbench/workbench.web.api.js
, search for{primary:68
and replace with{primary:0
. Here is my command to patch it:Thanks for the quick response. I understand I guess the temporary fixed posted above would be ok for now. Cheers.