Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

change terminal shortcut vscode

// Go to File → Preferences → Keyboard Shortcuts or just press Ctrl + k + Ctrl + s.
// Then click the icon in upper right corner, it opens keybindings.json file:
{
    "key": "ctrl+pagedown",
    "command": "workbench.action.terminal.focusNext",
    "when": "terminalFocus"
},
{
    "key": "ctrl+pageup",
    "command": "workbench.action.terminal.focusPrevious",
    "when": "terminalFocus"
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #terminal #shortcut #vscode
ADD COMMENT
Topic
Name
7+6 =