I’m simply trying to get the default key binding of “super+alt+f” to open the Replace menu.
It’s defined in the default keymap file that ships with sublime text:
{ "keys": "super+alt+f"], "command": "show_panel", "args": {"panel": "replace"} },
- recently re-installed OSX 10.8.5 but prior to this the key binding worked fine
- have the newest ST 2 stable: 2.0.2
- removed all ST customizations
- logged keys with console and >>> sublime.log_input(True) and sublime.log_commands(True)
With key logging I don’t see “super+alt+f” or “super+alt+e”
I do see the command triggered by “super+alt+e” (replace_next) but not “super+alt+f”…
If I use a different binding like “control+super+f” then it does work…
What’s the problem with “super+alt+f”?