Search code examples
sublimetext3keyboard-shortcuts

Sublime Text 3 Shortcut Find and Replace won't work


I've found several topics related to my issue, but they didn't work. In Sublime Text 3, my macOS super+alt+f "find and replace shortcut" (raise the panel of find/replace) doesn't work. I already tried:

  • running "FindKeyConflicts: All key conflicts":

    (super+l,alt+super+f)
         latex_fill_all                         LaTeXTools            
    [{"operand": "text.tex.latex", "operator": "equal", "key": "selector"}]
    
  • an then put the following into Preference > Key Bindings (User):

    {"keys": ["super+alt+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false}}
    

Solution

  • I hope this answer will help if you run into the same issue, because it's a bit tricky. The issue is a small App I use which used the shortcut above.

    It's clear there is a Shortcut I didn't find at start. With this information I just changed the following within Preferences > Key Bindings:

        {
         "keys": ["super+shift+alt+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false}
        }