Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/quick-open/src/browser/quick-open.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class QuickOpenFeatureContribution

registerCommands(commands: CommandRegistry): void {
commands.registerCommand(QUICK_OPEN_COMMANDS.OPEN, {
execute: (prefix = '>') => this.prefixQuickOpenService.open(prefix),
execute: () => this.prefixQuickOpenService.open('>'),
Comment thread
erha19 marked this conversation as resolved.
});
commands.registerCommand(QUICK_OPEN_COMMANDS.OPEN_OUTLINE, {
execute: () => this.prefixQuickOpenService.open('@'),
Expand Down