Remove unbind keybinding example

This commit is contained in:
Daniel Imms 2021-07-20 04:41:49 -07:00
Родитель f53f561aa5
Коммит 4f39339cd9
1 изменённых файлов: 1 добавлений и 12 удалений

Просмотреть файл

@ -280,18 +280,7 @@ Note that the command only works with the `\u0000` format for using characters v
The integrated terminal has find functionality that can be triggered with `kb(workbench.action.terminal.focusFind)`.
If you want `kbstyle(Ctrl+F)` to go to the shell instead of launching the Find control on Linux and Windows, you will need to remove the keybinding like so:
```js
// Windows/Linux
{ "key": "ctrl+f", "command": "-workbench.action.terminal.focusFind",
"when": "terminalFocus" },
// macOS
{ "key": "cmd+f", "command": "-workbench.action.terminal.focusFind",
"when": "terminalFocus" },
```
Alternatively, you can add the following to your `settings.json`:
If you want `kbstyle(Ctrl+F)` to go to the shell instead of launching the Find control on Linux and Windows, you will need to add the following to your settings.json which will tell the terminal not to skip the shell for keybindings matching the `workbench.action.terminal.focusFind` command:
```
"terminal.integrated.commandsToSkipShell": [