Created
March 12, 2020 18:53
Revisions
-
480 created this gist
Mar 12, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ ## VSCode 1. Open Command Palette `⇧⌘P` or `F1` 1. Select `Preferences: Open Keyboard Shortcuts (JSON)` 1. `keybindings.json` will opened 1. Add below ``` { "key": "ctrl+alt+c", "command": "workbench.action.terminal.sendSequence", "args": { "text": "\u0003" }, "when": "terminalFocus" } ``` 1. That's all 1. Try it on the VSCode Terminal when you're running any node.js app