如何在 Visual Studio 代码中的集成终端禁用 Ctrl+F 搜索 window?

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

您知道如何在按下“Ctrl-F”时禁用 Visual Studio 代码中集成终端显示的搜索 window 吗? 有了这个,我被迫按下箭头按钮来使用 fish shell.

完成

谢谢

在 Gear Icon/Keyboard 快捷方式页面中找到

Terminal: Focus Find 命令,右键单击并选择 Remove Keybinding

这会将以下键绑定添加到 keybindings.json 的末尾:

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

Ctrl+F将不再调出终端查找小部件。