Sublime Forum

Keyboard shortcut for Find/Replace doesn't exist (at least on mac)

#1

Hi there,

What is the keyboard shortcut for Find/Replace? Here is a screenshot for the “Find” menu, which shows there’s not one set up (see Replace…).

Thanks!

0 Likes

#2

The menus are dynamic and show you the current binding to the underlying command. My menu shows that the default binding for this on MacOS is ⌘+Alt+F.

Since it’s missing on your menu that’s probably because that key is bound to something somewhere else (either by you explicitly or by a plugin that you’re using).

You can restore the default binding (or choose a new one) by adding the following to your key bindings:

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

#3

Thanks, that command is in my default key map, but after adding it to my user key map, now it’s working.

1 Like