We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b28df21 + a8a277f commit 4fa94e1Copy full SHA for 4fa94e1
src/mode/modeNormal.ts
@@ -26,7 +26,10 @@ export default class CommandMode extends Mode {
26
}
27
28
ShouldBeActivated(key : string, currentMode : ModeName) : boolean {
29
- return (key === 'esc' || key === 'ctrl+[');
+ if (key === 'esc' || key === 'ctrl+[') {
30
+ vscode.commands.executeCommand("cursorLeft");
31
+ return true;
32
+ }
33
34
35
HandleActivation(key : string) : void {
0 commit comments