Sublime Forum

Find and Replace keyboard shortcut doesn't work for me (macOS)

#1

Hi All,

I’m new to Sublime Text 3 and very impressed.

For some reason the keyboard shortcut Cmd+Alt+F to Find & Replace doesn’t work for me (macOS High Sierra).

Any ideas?

1 Like

#3

Hii,

I started having this problem right after I updated to macOS Catalina.
Anyone else had similar issue?

Cheers,
-SH

0 Likes

#4

The solution is to add the following line of code in the Key Bindings:

[
	//Making "Replace_All" Work Again, but with a different key combination
	{
		"keys": ["command+enter"], "command": "replace_all"
	}
]
0 Likes