提交 d4807221 编写于 作者: I isidor

fixes #49413

上级 b8b3bc32
......@@ -349,6 +349,8 @@ export class ConfigurationManager implements IConfigurationManager {
if (!candidates) {
candidates = this.debuggers.filter(a => a.hasInitialConfiguration() || a.hasConfigurationProvider);
}
candidates = candidates.sort((first, second) => first.label.localeCompare(second.label));
return this.quickOpenService.pick([...candidates, { label: 'More...', separator: { border: true } }], { placeHolder: nls.localize('selectDebug', "Select Environment") })
.then(picked => {
if (picked instanceof Debugger) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册