Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Ctrl+F search window at integrated terminal in Visual Studio Code?

Do you know how to disable Search window showing up at integrated terminal in Visual Studio Code when "Ctrl-F" is pressed? With this, I am forced to press arrow button to use completion by fish shell.

Thank you

like image 849
nutsman Avatar asked Nov 16 '25 10:11

nutsman


1 Answers

In the Gear Icon/Keyboard Shortcuts page find the

Terminal: Focus Find command, right -click and choose Remove Keybinding

That will add the following keybinding to the end of your keybindings.json:

{
  "key": "ctrl+f",
  "command": "-workbench.action.terminal.focusFind",
  "when": "terminalFindFocused && terminalHasBeenCreated || terminalFindFocused && terminalProcessSupported || terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
},

and Ctrl+F will no longer bring up the terminal find widget.

like image 114
Mark Avatar answered Nov 18 '25 20:11

Mark



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!