MiroHibler/sublime-keymaps

Key binding doesn't work in Windows

Opened this issue · 5 comments

Ctrl+Alt+? does not work. (Adding Shift doesn't help either.)

If I add a custom keymap:

{ "keys": ["ctrl+alt+/"], "command": "find_keymap" }

It does start working. The same key is shared by the question mark and slash on en-US keyboards, I'm not sure about others.

Same issue here. His fix works (thanks daguej!).

The shortcut for bringing up the cheatsheet does not work in Win either. I put this in Keybindings > User:

{ "keys": ["ctrl+alt+-"], "command": "cheat_sheet" }

+1 here, but I can access both find keymap and cheat sheet through Tools > Keymaps

JHep commented

I just wanted to chime in with the same issue.

I'm on 64-bit Windows 7 SP1 (United States) with Sublime Text 2 and 3, and I can't invoke the "Find keymap for..." or the "Cheat Sheet" unless I select them from the Tools / Keymap menu.

so ,the problem still not fixed...

this helped me on linux
{ "keys": ["ctrl+alt+shift+/"], "command": "find_keymap"},
{"keys": ["ctrl+alt+shift+-"], "command": "cheat_sheet"},