Update keybindings.json
This commit is contained in:
parent
b8c633a7fd
commit
abd224cfc1
|
@ -151,13 +151,13 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+n",
|
"key": "ctrl+n",
|
||||||
"command": "workbench.action.terminal.findNextTerminalFocus",
|
"command": "workbench.action.terminal.findNext",
|
||||||
"when": "terminalFocus"
|
"when": "terminalFocus || terminalFindWidgetFocused"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+n",
|
"key": "ctrl+shift+n",
|
||||||
"command": "workbench.action.terminal.findPreviousTerminalFocus",
|
"command": "workbench.action.terminal.findPrevious",
|
||||||
"when": "terminalFocus"
|
"when": "terminalFocus || terminalFindWidgetFocused"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+t",
|
"key": "ctrl+t",
|
||||||
|
@ -267,15 +267,10 @@
|
||||||
"command": "workbench.action.debug.restart",
|
"command": "workbench.action.debug.restart",
|
||||||
"when": "inDebugMode"
|
"when": "inDebugMode"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "ctrl+shift+c",
|
|
||||||
"command": "workbench.action.terminal.toggleFindCaseSensitiveTerminalFocus",
|
|
||||||
"when": "terminalFocus"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+c",
|
"key": "ctrl+shift+c",
|
||||||
"command": "workbench.action.terminal.toggleFindCaseSensitive",
|
"command": "workbench.action.terminal.toggleFindCaseSensitive",
|
||||||
"when": "terminalFindWidgetFocused"
|
"when": "terminalFocus || terminalFindWidgetFocused"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+c",
|
"key": "ctrl+shift+c",
|
||||||
|
@ -287,15 +282,10 @@
|
||||||
"command": "toggleSearchCaseSensitive",
|
"command": "toggleSearchCaseSensitive",
|
||||||
"when": "searchViewletFocus && searchViewletVisible && !fileMatchOrFolderMatchFocus"
|
"when": "searchViewletFocus && searchViewletVisible && !fileMatchOrFolderMatchFocus"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "ctrl+shift+d",
|
|
||||||
"command": "workbench.action.terminal.toggleFindWholeWordTerminalFocus",
|
|
||||||
"when": "terminalFocus"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+d",
|
"key": "ctrl+shift+d",
|
||||||
"command": "workbench.action.terminal.toggleFindWholeWord",
|
"command": "workbench.action.terminal.toggleFindWholeWord",
|
||||||
"when": "terminalFindWidgetFocused"
|
"when": "terminalFocus || terminalFindWidgetFocused"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+d",
|
"key": "ctrl+shift+d",
|
||||||
|
@ -317,16 +307,6 @@
|
||||||
"command": "workbench.action.terminal.focusFindWidget",
|
"command": "workbench.action.terminal.focusFindWidget",
|
||||||
"when": "terminalFindWidgetFocused"
|
"when": "terminalFindWidgetFocused"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "ctrl+n",
|
|
||||||
"command": "workbench.action.terminal.findNextTerminalFocus",
|
|
||||||
"when": "terminalFindWidgetFocused"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "ctrl+shift+n",
|
|
||||||
"command": "workbench.action.terminal.findPreviousTerminalFocus",
|
|
||||||
"when": "terminalFindWidgetFocused"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"key": "ctrl+shift+]",
|
"key": "ctrl+shift+]",
|
||||||
"command": "workbench.action.nextEditor",
|
"command": "workbench.action.nextEditor",
|
||||||
|
|
Loading…
Reference in New Issue