Skip to content

Commit afe68c6

Browse files
Use a colon instead of quotes to handle long queries better (microsoft#180980)
Fixes microsoft/vscode-internalbacklog#4021
1 parent ea031c7 commit afe68c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class CommandsQuickAccessProvider extends AbstractEditorCommandsQuickAcce
8484
const info = this.interactiveSessionService.getProviderInfos()[0];
8585
return info
8686
? {
87-
label: localize('askXInInteractiveSession', "Ask {0} '{1}'", info.displayName, filter),
87+
label: localize('askXInInteractiveSession', "Ask {0}: {1}", info.displayName, filter),
8888
commandId: AskInInteractiveAction.ID,
8989
accept: () => commandService.executeCommand(AskInInteractiveAction.ID, filter)
9090
}

0 commit comments

Comments
 (0)