mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-19 17:25:57 -05:00
Use 'stashed changes' terminology
This commit is contained in:
@@ -79,12 +79,12 @@ export class CommitDetailsQuickPick {
|
||||
|
||||
if (stash && git.config.insiders) {
|
||||
items.splice(index++, 0, new CommandQuickPickItem({
|
||||
label: `$(repo-forked) Apply Stash`,
|
||||
label: `$(repo-forked) Apply Stashed Changes`,
|
||||
description: `\u00a0 \u2014 \u00a0\u00a0 ${commit.message}`
|
||||
}, Commands.StashApply, [commit as GitStashCommit, true, false]));
|
||||
|
||||
items.splice(index++, 0, new CommandQuickPickItem({
|
||||
label: `$(x) Delete Stash`,
|
||||
label: `$(x) Delete Stashed Changes`,
|
||||
description: `\u00a0 \u2014 \u00a0\u00a0 ${commit.message}`
|
||||
}, Commands.StashDelete, [commit as GitStashCommit, true]));
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ export class StashListQuickPick {
|
||||
|
||||
const pick = await window.showQuickPick(items, {
|
||||
matchOnDescription: true,
|
||||
placeHolder: placeHolder || `stash list \u2014 search by message, filename, or sha`,
|
||||
placeHolder: placeHolder || `stashed changes \u2014 search by message, filename, or sha`,
|
||||
ignoreFocusOut: getQuickPickIgnoreFocusOut()
|
||||
// onDidSelectItem: (item: QuickPickItem) => {
|
||||
// scope.setKeyCommand('right', item);
|
||||
|
||||
Reference in New Issue
Block a user