Replies: 2 comments
-
Not Vim command but on VSCode have you tried |
Beta Was this translation helpful? Give feedback.
0 replies
-
hey @ubaldot, the answer above toggles the terminal. To achieve the exact behavior you are looking for, you could can map it directly in your {
"key": "ctrl+j",
"command": "workbench.action.focusBelowGroup",
"when": "!editorFocus && !inSearchEditor && !inputBoxFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.focusAboveGroup",
"when": "!editorFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.focusLastEditorGroup",
"when": "terminalFocus"
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I was using
gvim
I use to have a vertical split with the editor in one split and avimterminal
on the other split runningIPython
.I used to jump to/from the editor/terminal with
<c-w><c-w>
, now I have no clue how to that.Can someone help, please?
Beta Was this translation helpful? Give feedback.
All reactions