@codingame/monaco-vscode-quickaccess-service-override
Advanced tools
Comparing version 11.0.0 to 11.0.1
{ | ||
"name": "@codingame/monaco-vscode-quickaccess-service-override", | ||
"version": "11.0.0", | ||
"version": "11.0.1", | ||
"keywords": [], | ||
@@ -29,5 +29,5 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.0", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.0" | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.1", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.1" | ||
} | ||
} |
@@ -137,11 +137,11 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
if (i === 0 && this.commandsHistory.peek(commandPick.commandId)) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4694, "recently used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4613, "recently used")) }); | ||
addOtherSeparator = true; | ||
} | ||
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4695, "similar commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4614, "similar commands")) }); | ||
addSuggestedSeparator = false; | ||
} | ||
if (addCommonlyUsedSeparator && commandPick.tfIdfScore === undefined && !this.commandsHistory.peek(commandPick.commandId) && this.options.suggestedCommandIds?.has(commandPick.commandId)) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4696, "commonly used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4615, "commonly used")) }); | ||
addOtherSeparator = true; | ||
@@ -151,3 +151,3 @@ addCommonlyUsedSeparator = false; | ||
if (addOtherSeparator && commandPick.tfIdfScore === undefined && !this.commandsHistory.peek(commandPick.commandId) && !this.options.suggestedCommandIds?.has(commandPick.commandId)) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4697, "other commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4616, "other commands")) }); | ||
addOtherSeparator = false; | ||
@@ -169,3 +169,3 @@ } | ||
if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') { | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4695, "similar commands")) }); | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4614, "similar commands")) }); | ||
} | ||
@@ -182,3 +182,3 @@ return commandPicks; | ||
const ariaLabel = keybinding ? | ||
( localize(4698, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
( localize(4617, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
commandPick.label; | ||
@@ -203,3 +203,3 @@ return { | ||
if (!isCancellationError(error)) { | ||
this.dialogService.error(( localize(4699, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
this.dialogService.error(( localize(4618, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
} | ||
@@ -206,0 +206,0 @@ } |
@@ -51,3 +51,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
keybinding: helpEntry.commandId ? this.keybindingService.lookupKeybinding(helpEntry.commandId) : undefined, | ||
ariaLabel: ( localize(4904, "{0}, {1}", label, helpEntry.description)), | ||
ariaLabel: ( localize(4687, "{0}, {1}", label, helpEntry.description)), | ||
description: helpEntry.description | ||
@@ -54,0 +54,0 @@ }; |
@@ -106,3 +106,3 @@ import { localize2, localize } from 'vscode/vscode/vs/nls'; | ||
id: 'workbench.action.quickOpen', | ||
title: ( localize2(1069, "Go to File...")), | ||
title: ( localize2(893, "Go to File...")), | ||
metadata: { | ||
@@ -135,3 +135,3 @@ description: `Quick access`, | ||
id: 'workbench.action.quickOpenWithModes', | ||
title: ( localize(1070, "Quick Open")), | ||
title: ( localize(894, "Quick Open")), | ||
icon: Codicon.search, | ||
@@ -177,3 +177,3 @@ menu: { | ||
constructor() { | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(1071, 'Navigate Next in Quick Open')), true, true); | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(895, 'Navigate Next in Quick Open')), true, true); | ||
} | ||
@@ -183,3 +183,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(1072, 'Navigate Previous in Quick Open')), false, true); | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(896, 'Navigate Previous in Quick Open')), false, true); | ||
} | ||
@@ -189,3 +189,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(1073, 'Select Next in Quick Open')), true, false, { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(897, 'Select Next in Quick Open')), true, false, { | ||
weight: 200 + 50, | ||
@@ -200,3 +200,3 @@ when: inQuickPickContext, | ||
constructor() { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(1074, 'Select Previous in Quick Open')), false, false, { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(898, 'Select Previous in Quick Open')), false, false, { | ||
weight: 200 + 50, | ||
@@ -203,0 +203,0 @@ when: inQuickPickContext, |
@@ -54,3 +54,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: GotoLineAction.ID, | ||
title: ( localize2(1060, 'Go to Line/Column...')), | ||
title: ( localize2(881, 'Go to Line/Column...')), | ||
f1: true, | ||
@@ -74,8 +74,8 @@ keybinding: { | ||
placeholder: ( localize( | ||
1061, | ||
882, | ||
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)." | ||
)), | ||
helpEntries: [{ description: ( localize(1062, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
helpEntries: [{ description: ( localize(883, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
}); | ||
export { GotoLineQuickAccessProvider }; |
@@ -53,3 +53,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
noResultsPick: () => ({ | ||
label: ( localize(1051, "No matching commands")), | ||
label: ( localize(884, "No matching commands")), | ||
commandId: '' | ||
@@ -103,3 +103,3 @@ }), | ||
iconClass: ThemeIcon.asClassName(Codicon.gear), | ||
tooltip: ( localize(1052, "Configure Keybinding")), | ||
tooltip: ( localize(885, "Configure Keybinding")), | ||
}], | ||
@@ -142,3 +142,3 @@ trigger: () => { | ||
additionalPicks.push({ | ||
label: ( localize(1053, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
label: ( localize(886, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
commandId: this.configuration.experimental.askChatLocation === 'quickChat' ? ASK_QUICK_QUESTION_ACTION_ID : CHAT_OPEN_ACTION_ID, | ||
@@ -177,3 +177,3 @@ args: [filter] | ||
if (category) { | ||
label = ( localize(1054, "{0}: {1}", category, label)); | ||
label = ( localize(887, "{0}: {1}", category, label)); | ||
} | ||
@@ -221,3 +221,3 @@ const aliasLabel = typeof action.item.title !== 'string' ? action.item.title.original : undefined; | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize2(1055, 'Show All Commands')), | ||
title: ( localize2(888, 'Show All Commands')), | ||
keybinding: { | ||
@@ -240,3 +240,3 @@ weight: 200 , | ||
id: 'workbench.action.clearCommandHistory', | ||
title: ( localize2(1056, 'Clear Command History')), | ||
title: ( localize2(889, 'Clear Command History')), | ||
f1: true | ||
@@ -253,5 +253,5 @@ }); | ||
type: 'warning', | ||
message: ( localize(1057, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(1058, "This action is irreversible!")), | ||
primaryButton: ( localize(1059, "&&Clear")) | ||
message: ( localize(890, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(891, "This action is irreversible!")), | ||
primaryButton: ( localize(892, "&&Clear")) | ||
}); | ||
@@ -258,0 +258,0 @@ if (!confirmed) { |
@@ -18,3 +18,3 @@ import { localize } from 'vscode/vscode/vs/nls'; | ||
placeholder: ( localize( | ||
1075, | ||
905, | ||
"Type '{0}' to get help on the actions you can take from here.", | ||
@@ -24,5 +24,5 @@ HelpQuickAccessProvider.PREFIX | ||
helpEntries: [{ | ||
description: ( localize(1076, "Show all Quick Access Providers")), | ||
description: ( localize(906, "Show all Quick Access Providers")), | ||
commandCenterOrder: 70, | ||
commandCenterLabel: ( localize(1077, 'More')) | ||
commandCenterLabel: ( localize(907, 'More')) | ||
}] | ||
@@ -34,4 +34,4 @@ }); | ||
contextKey: 'inViewsPicker', | ||
placeholder: ( localize(1078, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(1079, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
placeholder: ( localize(908, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(909, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
}); | ||
@@ -42,4 +42,4 @@ quickAccessRegistry.registerQuickAccessProvider({ | ||
contextKey: 'inCommandsPicker', | ||
placeholder: ( localize(1080, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(1081, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
placeholder: ( localize(910, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(911, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
}); | ||
@@ -50,3 +50,3 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1082, "&&Command Palette...")) | ||
title: ( localize(912, "&&Command Palette...")) | ||
}, | ||
@@ -59,3 +59,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1083, "Show All Commands")) | ||
title: ( localize(913, "Show All Commands")) | ||
}, | ||
@@ -68,3 +68,3 @@ order: 2 | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize(1084, "&&Open View...")) | ||
title: ( localize(914, "&&Open View...")) | ||
}, | ||
@@ -77,3 +77,3 @@ order: 2 | ||
id: 'workbench.action.gotoLine', | ||
title: ( localize(1085, "Go to &&Line/Column...")) | ||
title: ( localize(915, "Go to &&Line/Column...")) | ||
}, | ||
@@ -86,3 +86,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1086, "Command Palette...")) | ||
title: ( localize(916, "Command Palette...")) | ||
}, | ||
@@ -96,3 +96,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1086, "Command Palette...")), | ||
title: ( localize(916, "Command Palette...")), | ||
}, | ||
@@ -99,0 +99,0 @@ order: 1 |
@@ -27,3 +27,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
noResultsPick: { | ||
label: ( localize(4905, "No matching views")), | ||
label: ( localize(4819, "No matching views")), | ||
containerLabel: '' | ||
@@ -116,5 +116,5 @@ } | ||
}; | ||
addPaneComposites(0 , ( localize(4906, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4907, "Panel"))); | ||
addPaneComposites(2 , ( localize(4908, "Secondary Side Bar"))); | ||
addPaneComposites(0 , ( localize(4820, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4821, "Panel"))); | ||
addPaneComposites(2 , ( localize(4822, "Secondary Side Bar"))); | ||
const addPaneCompositeViews = (location) => { | ||
@@ -134,6 +134,6 @@ const paneComposites = this.paneCompositeService.getPaneComposites(location); | ||
group.terminalInstances.forEach((terminal, terminalIndex) => { | ||
const label = ( localize(4909, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
const label = ( localize(4823, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
viewEntries.push({ | ||
label, | ||
containerLabel: ( localize(4910, "Terminal")), | ||
containerLabel: ( localize(4824, "Terminal")), | ||
accept: async () => { | ||
@@ -150,3 +150,3 @@ await this.terminalGroupService.showPanel(true); | ||
label, | ||
containerLabel: ( localize(4911, "Debug Console")), | ||
containerLabel: ( localize(4825, "Debug Console")), | ||
accept: async () => { | ||
@@ -164,3 +164,3 @@ await this.debugService.focusStackFrame(undefined, undefined, session, { explicit: true }); | ||
label: channel.label, | ||
containerLabel: ( localize(4912, "Output")), | ||
containerLabel: ( localize(4826, "Output")), | ||
accept: () => this.outputService.showChannel(channel.id) | ||
@@ -194,3 +194,3 @@ }); | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize2(4913, 'Open View')), | ||
title: ( localize2(4827, 'Open View')), | ||
category: Categories.View, | ||
@@ -214,3 +214,3 @@ f1: true | ||
id: QuickAccessViewPickerAction.ID, | ||
title: ( localize2(4914, 'Quick Open View')), | ||
title: ( localize2(4828, 'Quick Open View')), | ||
category: Categories.View, | ||
@@ -217,0 +217,0 @@ f1: false, |
@@ -70,3 +70,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
message: ( localize( | ||
4915, | ||
4829, | ||
'Do you want {0} to open the external website?', | ||
@@ -78,7 +78,7 @@ this._productService.nameShort | ||
{ | ||
label: ( localize(4916, '&&Open')), | ||
label: ( localize(4830, '&&Open')), | ||
run: () => true | ||
}, | ||
{ | ||
label: ( localize(4917, '&&Copy')), | ||
label: ( localize(4831, '&&Copy')), | ||
run: () => { | ||
@@ -90,3 +90,3 @@ this._clipboardService.writeText(typeof originalResource === 'string' ? originalResource : ( (resourceUri.toString(true)))); | ||
{ | ||
label: ( localize(4918, 'Configure &&Trusted Domains')), | ||
label: ( localize(4832, 'Configure &&Trusted Domains')), | ||
run: async () => { | ||
@@ -93,0 +93,0 @@ const { trustedDomains, } = this._instantiationService.invokeFunction(readStaticTrustedDomains); |
@@ -23,3 +23,3 @@ import { URI } from 'vscode/vscode/vs/base/common/uri'; | ||
id: 'workbench.action.url.openUrl', | ||
title: ( localize2(1087, 'Open URL')), | ||
title: ( localize2(917, 'Open URL')), | ||
category: Categories.Developer, | ||
@@ -32,3 +32,3 @@ f1: true | ||
const urlService = accessor.get(IURLService); | ||
return quickInputService.input({ prompt: ( localize(1088, "URL to open")) }).then(input => { | ||
return quickInputService.input({ prompt: ( localize(918, "URL to open")) }).then(input => { | ||
if (input) { | ||
@@ -61,3 +61,3 @@ const uri = ( (URI.parse(input))); | ||
description: ( localize( | ||
1089, | ||
919, | ||
"When enabled, trusted domain prompts will appear when opening links in trusted workspaces." | ||
@@ -64,0 +64,0 @@ )) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
88999
+ Added@codingame/monaco-vscode-api@11.0.1(transitive)
+ Added@codingame/monaco-vscode-base-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-comments-extensions-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-files-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-host-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-api@11.0.0(transitive)
- Removed@codingame/monaco-vscode-base-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-comments-extensions-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-files-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-host-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@11.0.0(transitive)