Просмотр исходного кода

Adds keyboard nav to stash apply, pop, and drop

main
Eric Amodio 5 лет назад
Родитель
Сommit
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 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; const selection: StepSelection<typeof step> = yield step;
@ -489,6 +500,17 @@ export class StashGitCommand extends QuickCommandBase {
expand: true 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; const selection: StepSelection<typeof step> = yield step;

Загрузка…
Отмена
Сохранить