KCommands provides a keyboard accessible command line for Visual Studio 2017/2019/2022 to quickly find and replace text similar to SlickEdit and Vim:
To open the command line assign a shortcut to the KCommands.Open command in Visual Studio keyboard options.
Example commands:
f /bool - find next "bool" in the current document with default options (match case)
f /bool/iw - find next "bool" ignoring case and matching whole word
f/bool - the space after the command name can be omitted
f /BOOL/w* - find all usages of "BOOL" in the solution
r /BOOL/bool/w - replace all "BOOL" with "bool" in the current document
r ./.\ - use another character (in this case . instead of /) as a command separator to replace slash with backslash