Compare commits
No commits in common. "0fa11e05a5315a657238918a3957a5c7950a0a52" and "6821c4db3f9eb6ebd7d9a26d07ddd506bdc6b175" have entirely different histories.
0fa11e05a5
...
6821c4db3f
@ -74,35 +74,12 @@
|
|||||||
"command": "-extension.vim_navigateCtrlL",
|
"command": "-extension.vim_navigateCtrlL",
|
||||||
"when": "editorTextFocus && vim.active && vim.use<C-l> && !inDebugRepl"
|
"when": "editorTextFocus && vim.active && vim.use<C-l> && !inDebugRepl"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "ctrl+p",
|
|
||||||
"command": "-workbench.action.quickOpen"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "ctrl+e",
|
|
||||||
"command": "-workbench.action.quickOpen"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "ctrl+f12",
|
|
||||||
"command": "-editor.action.revealDefinition",
|
|
||||||
"when": "editorHasDefinitionProvider && editorTextFocus && isWeb"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "f12",
|
|
||||||
"command": "-editor.action.revealDefinition",
|
|
||||||
"when": "editorHasDefinitionProvider && editorTextFocus"
|
|
||||||
},
|
|
||||||
// Editing
|
// Editing
|
||||||
{
|
{
|
||||||
"key": "shift+k",
|
"key": "shift+k",
|
||||||
"command": "editor.action.showHover",
|
"command": "editor.action.showHover",
|
||||||
"when": "editorTextFocus"
|
"when": "editorTextFocus"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "escape",
|
|
||||||
"command": "workbench.action.closeSidebar",
|
|
||||||
"when": "sideBarVisible"
|
|
||||||
},
|
|
||||||
// Editor pane navigation and management
|
// Editor pane navigation and management
|
||||||
{
|
{
|
||||||
"key": "ctrl+k",
|
"key": "ctrl+k",
|
||||||
@ -183,7 +160,7 @@
|
|||||||
"when": "terminalFocus"
|
"when": "terminalFocus"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+k",
|
"key": "ctrl+b up",
|
||||||
"command": "workbench.action.terminal.sendSequence",
|
"command": "workbench.action.terminal.sendSequence",
|
||||||
"args": {
|
"args": {
|
||||||
"text": "\u0002\u001b[A"
|
"text": "\u0002\u001b[A"
|
||||||
@ -191,7 +168,7 @@
|
|||||||
"when": "terminalFocus"
|
"when": "terminalFocus"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+j",
|
"key": "ctrl+b down",
|
||||||
"command": "workbench.action.terminal.sendSequence",
|
"command": "workbench.action.terminal.sendSequence",
|
||||||
"args": {
|
"args": {
|
||||||
"text": "\u0002\u001b[B"
|
"text": "\u0002\u001b[B"
|
||||||
@ -199,7 +176,7 @@
|
|||||||
"when": "terminalFocus"
|
"when": "terminalFocus"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+h",
|
"key": "ctrl+b left",
|
||||||
"command": "workbench.action.terminal.sendSequence",
|
"command": "workbench.action.terminal.sendSequence",
|
||||||
"args": {
|
"args": {
|
||||||
"text": "\u0002\u001b[D"
|
"text": "\u0002\u001b[D"
|
||||||
@ -207,7 +184,7 @@
|
|||||||
"when": "terminalFocus"
|
"when": "terminalFocus"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "ctrl+l",
|
"key": "ctrl+b right",
|
||||||
"command": "workbench.action.terminal.sendSequence",
|
"command": "workbench.action.terminal.sendSequence",
|
||||||
"args": {
|
"args": {
|
||||||
"text": "\u0002\u001b[C"
|
"text": "\u0002\u001b[C"
|
||||||
@ -269,13 +246,5 @@
|
|||||||
"text": "\u0002\u007a"
|
"text": "\u0002\u007a"
|
||||||
},
|
},
|
||||||
"when": "terminalFocus"
|
"when": "terminalFocus"
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "ctrl+b g",
|
|
||||||
"command": "workbench.action.terminal.sendSequence",
|
|
||||||
"args": {
|
|
||||||
"text": "\u0002\u0067"
|
|
||||||
},
|
|
||||||
"when": "terminalFocus"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -93,36 +93,6 @@
|
|||||||
"commands": [
|
"commands": [
|
||||||
"editor.action.rename"
|
"editor.action.rename"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"before": [
|
|
||||||
"leader",
|
|
||||||
"s",
|
|
||||||
"f"
|
|
||||||
],
|
|
||||||
"commands": [
|
|
||||||
"workbench.action.quickOpen"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"before": [
|
|
||||||
"leader",
|
|
||||||
"s",
|
|
||||||
"g"
|
|
||||||
],
|
|
||||||
"commands": [
|
|
||||||
"workbench.action.findInFiles"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"before": [
|
|
||||||
"leader",
|
|
||||||
"g",
|
|
||||||
"r"
|
|
||||||
],
|
|
||||||
"commands": [
|
|
||||||
"editor.action.goToReferences"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
// Window
|
// Window
|
||||||
|
Loading…
Reference in New Issue
Block a user