Reputation: 11
I am having some issues with key bindings in Sublime Text 3. Specifically "cmd+shift+f - find in all files". I have no custom user key bindings saved. When I press cmd+shift+f nothing is happening.
Most key bindings seem to work fine but not cmd+shift+f (the one I really would like to work).
If I change the custom user key bindings:
{ "keys": ["super+shift+f"], "command": "show_panel", "args": {"panel": "find_in_files"} }
(default)
to
{ "keys": ["alt+shift+f"], "command": "show_panel", "args": {"panel": "find_in_files"} }
(custom)
for example, it works. But I want command+shift+f to work!
What could be causing this? Could it be some key bindings on my mac that overrides the Sublime Text key binding? I have the emmet plugin installed.
Upvotes: 1
Views: 2098
Reputation: 12882
There's a package called FindKeyConflicts that can display overlapping key-mappings
Upvotes: 1