Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Command Center debug launcher offer most recently used configuration first #240744

Merged
merged 2 commits into from
Feb 18, 2025

Conversation

notoriousmango
Copy link
Contributor

resolves #233910

// Most recently used configuration
if (selectedConfiguration.name === config.name && selectedConfiguration.launch === config.launch) {
const separator: IQuickPickSeparator = { type: 'separator', label: localize('mostRecent', 'Most Recent') };
picks.unshift(...[separator, pick]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
picks.unshift(...[separator, pick]);
picks.unshift(separator, pick);

@vs-code-engineering vs-code-engineering bot added this to the February 2025 milestone Feb 18, 2025
@connor4312 connor4312 enabled auto-merge (squash) February 18, 2025 16:46
@connor4312 connor4312 merged commit 1ba0fac into microsoft:main Feb 18, 2025
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Make Command Center debug launcher offer most recently used configuration first
3 participants