Browse Source

Removes left arrow to go back on input steps

main
Eric Amodio 1 year ago
parent
commit
492b90eb59
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      src/commands/gitCommands.ts

+ 1
- 3
src/commands/gitCommands.ts View File

@ -348,9 +348,7 @@ export class GitCommandsCommand extends Command {
}
};
const mapping: KeyMapping = {
left: { onDidPressKey: goBack },
};
const mapping: KeyMapping = {};
if (step.onDidPressKey != null && step.keys != null && step.keys.length !== 0) {
for (const key of step.keys) {
mapping[key] = {

Loading…
Cancel
Save