On macOS, Firefox uses the control key for each of the keyboard shortcuts in the "Find in Pageā¦" bar. For example, Highlight All is currently toggled by Control-I, Match Case is Control-C, Match Diacritics is Control-I, and Whole Words is Control-W. Unfortunately, this conflicts with my Cocoa text system key binding (DefaultKeyBinding.dict) used in text views on macOS to delete the previous word.
{
"^w" = "deleteWordBackward:";
}
Is there a way to change this shortcut so I can use Control-W to delete the previous word in the find bar?