ソースを参照

Adds keyboard nav to stash apply, pop, and drop

main
Eric Amodio 5年前
コミット
4f3ddfe637
1個のファイルの変更22行の追加0行の削除
  1. +22
    -0
      src/commands/git/stash.ts

+ 22
- 0
src/commands/git/stash.ts ファイルの表示

@ -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;

読み込み中…
キャンセル
保存