Skip to content

Commit

Permalink
Merge pull request #3036 from mxlian/patch-1
Browse files Browse the repository at this point in the history
Fix: Missing bindings to exit CommandMode. closes #3035
  • Loading branch information
jpoon authored Sep 21, 2018
2 parents 41c41c0 + b58c7f6 commit bbaf9bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/commands/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,7 @@ class CommandInsertInCommandline extends BaseCommand {
@RegisterAction
class CommandEscInCommandline extends BaseCommand {
modes = [ModeName.CommandlineInProgress];
keys = ['<Esc>'];
keys = [['<Esc>'], ['<C-c>'], ['<C-[>']];;
runsOnceForEveryCursor() {
return this.keysPressed[0] === '\n';
}
Expand Down

0 comments on commit bbaf9bc

Please sign in to comment.