Browse Source

Adds keyboard nav to stash apply, pop, and drop

main
Eric Amodio 5 years ago
parent
commit
4f3ddfe637
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      src/commands/git/stash.ts

+ 22
- 0
src/commands/git/stash.ts View File

@ -362,6 +362,17 @@ export class StashGitCommand extends QuickCommandBase {
expand: true
});
}
},
keys: ['right', 'alt+right', 'ctrl+right'],
onDidPressKey: async (quickpick, key) => {
if (quickpick.activeItems.length === 0) return;
const stash = quickpick.activeItems[0].item;
await Container.repositoriesView.revealStash(stash, {
select: true,
focus: false,
expand: true
});
}
});
const selection: StepSelection<typeof step> = yield step;
@ -489,6 +500,17 @@ export class StashGitCommand extends QuickCommandBase {
expand: true
});
}
},
keys: ['right', 'alt+right', 'ctrl+right'],
onDidPressKey: async (quickpick, key) => {
if (quickpick.activeItems.length === 0) return;
const stash = quickpick.activeItems[0].item;
await Container.repositoriesView.revealStash(stash, {
select: true,
focus: false,
expand: true
});
}
});
const selection: StepSelection<typeof step> = yield step;

Loading…
Cancel
Save