|
|
|
|
|
by Nizoss
263 days ago
|
|
If you're on Windows and using vscode, add thiss to keybinds.json [
{
"key": "shift+enter",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001b\n"
},
"when": "terminalFocus"
},
] It will allow you to get new lines without any strange output. |
|