Reputation: 31
Control + X
doesn't work to exit Nano in Visual Studio Code Terminal (I'm on Mac). I've edited a file, then saved it with Control + O
. Works fine. But when I try to eXit Nano in the terminal it doesn't work. Is there another shortcut?
Upvotes: 3
Views: 3197
Reputation: 1365
You will need to deny chord keybindings in the terminal.
Open your preferences, go to Features, Terminal and then uncheck "Integrated: Allow Chords". If you like better to edit the settings JSON, just put this there: "terminal.integrated.allowChords": false
.
Upvotes: 5