@codingame/monaco-vscode-quickaccess-service-override
Advanced tools
Comparing version 7.1.1 to 8.0.0
{ | ||
"name": "@codingame/monaco-vscode-quickaccess-service-override", | ||
"version": "7.1.1", | ||
"version": "8.0.0", | ||
"keywords": [], | ||
@@ -29,4 +29,4 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@7.1.1" | ||
"vscode": "npm:@codingame/monaco-vscode-api@8.0.0" | ||
} | ||
} |
@@ -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(4790, "recently used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4572, "recently used")) }); | ||
addOtherSeparator = true; | ||
} | ||
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4791, "similar commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4573, "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(4792, "commonly used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4574, "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(4793, "other commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4575, "other commands")) }); | ||
addOtherSeparator = false; | ||
@@ -169,3 +169,3 @@ } | ||
if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') { | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4793, "similar commands")) }); | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4575, "similar commands")) }); | ||
} | ||
@@ -182,3 +182,3 @@ return commandPicks; | ||
const ariaLabel = keybinding ? | ||
( localize(4794, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
( localize(4576, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
commandPick.label; | ||
@@ -203,3 +203,3 @@ return { | ||
if (!isCancellationError(error)) { | ||
this.dialogService.error(( localize(4795, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
this.dialogService.error(( localize(4577, "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(4985, "{0}, {1}", label, helpEntry.description)), | ||
ariaLabel: ( localize(4767, "{0}, {1}", label, helpEntry.description)), | ||
description: helpEntry.description | ||
@@ -54,0 +54,0 @@ }; |
@@ -107,3 +107,3 @@ import { localize2, localize } from 'vscode/vscode/vs/nls'; | ||
id: 'workbench.action.quickOpen', | ||
title: ( localize2(1172, "Go to File...")), | ||
title: ( localize2(880, "Go to File...")), | ||
metadata: { | ||
@@ -136,3 +136,3 @@ description: `Quick access`, | ||
id: 'workbench.action.quickOpenWithModes', | ||
title: ( localize(1173, "Quick Open")), | ||
title: ( localize(881, "Quick Open")), | ||
icon: Codicon.search, | ||
@@ -177,3 +177,3 @@ menu: { | ||
constructor() { | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(1174, 'Navigate Next in Quick Open')), true, true); | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(882, 'Navigate Next in Quick Open')), true, true); | ||
} | ||
@@ -183,3 +183,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(1175, 'Navigate Previous in Quick Open')), false, true); | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(883, 'Navigate Previous in Quick Open')), false, true); | ||
} | ||
@@ -189,3 +189,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(1176, 'Select Next in Quick Open')), true, false, { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(884, 'Select Next in Quick Open')), true, false, { | ||
weight: KeybindingWeight.WorkbenchContrib + 50, | ||
@@ -200,3 +200,3 @@ when: inQuickPickContext, | ||
constructor() { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(1177, 'Select Previous in Quick Open')), false, false, { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(885, 'Select Previous in Quick Open')), false, false, { | ||
weight: KeybindingWeight.WorkbenchContrib + 50, | ||
@@ -203,0 +203,0 @@ when: inQuickPickContext, |
@@ -56,3 +56,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: GotoLineAction.ID, | ||
title: ( localize2(1163, 'Go to Line/Column...')), | ||
title: ( localize2(871, 'Go to Line/Column...')), | ||
f1: true, | ||
@@ -76,8 +76,8 @@ keybinding: { | ||
placeholder: ( localize( | ||
1164, | ||
872, | ||
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)." | ||
)), | ||
helpEntries: [{ description: ( localize(1165, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
helpEntries: [{ description: ( localize(873, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
}); | ||
export { GotoLineQuickAccessProvider }; |
@@ -56,3 +56,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
noResultsPick: () => ({ | ||
label: ( localize(1154, "No matching commands")), | ||
label: ( localize(862, "No matching commands")), | ||
commandId: '' | ||
@@ -106,3 +106,3 @@ }), | ||
iconClass: ThemeIcon.asClassName(Codicon.gear), | ||
tooltip: ( localize(1155, "Configure Keybinding")), | ||
tooltip: ( localize(863, "Configure Keybinding")), | ||
}], | ||
@@ -145,3 +145,3 @@ trigger: () => { | ||
additionalPicks.push({ | ||
label: ( localize(1156, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
label: ( localize(864, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
commandId: this.configuration.experimental.askChatLocation === 'quickChat' ? ASK_QUICK_QUESTION_ACTION_ID : CHAT_OPEN_ACTION_ID, | ||
@@ -180,3 +180,3 @@ args: [filter] | ||
if (category) { | ||
label = ( localize(1157, "{0}: {1}", category, label)); | ||
label = ( localize(865, "{0}: {1}", category, label)); | ||
} | ||
@@ -224,3 +224,3 @@ const aliasLabel = typeof action.item.title !== 'string' ? action.item.title.original : undefined; | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize2(1158, 'Show All Commands')), | ||
title: ( localize2(866, 'Show All Commands')), | ||
keybinding: { | ||
@@ -243,3 +243,3 @@ weight: KeybindingWeight.WorkbenchContrib, | ||
id: 'workbench.action.clearCommandHistory', | ||
title: ( localize2(1159, 'Clear Command History')), | ||
title: ( localize2(867, 'Clear Command History')), | ||
f1: true | ||
@@ -256,5 +256,5 @@ }); | ||
type: 'warning', | ||
message: ( localize(1160, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(1161, "This action is irreversible!")), | ||
primaryButton: ( localize(1162, "&&Clear")) | ||
message: ( localize(868, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(869, "This action is irreversible!")), | ||
primaryButton: ( localize(870, "&&Clear")) | ||
}); | ||
@@ -261,0 +261,0 @@ if (!confirmed) { |
@@ -19,3 +19,3 @@ import { localize } from 'vscode/vscode/vs/nls'; | ||
placeholder: ( localize( | ||
1178, | ||
886, | ||
"Type '{0}' to get help on the actions you can take from here.", | ||
@@ -25,5 +25,5 @@ HelpQuickAccessProvider.PREFIX | ||
helpEntries: [{ | ||
description: ( localize(1179, "Show all Quick Access Providers")), | ||
description: ( localize(887, "Show all Quick Access Providers")), | ||
commandCenterOrder: 70, | ||
commandCenterLabel: ( localize(1180, 'More')) | ||
commandCenterLabel: ( localize(888, 'More')) | ||
}] | ||
@@ -35,4 +35,4 @@ }); | ||
contextKey: 'inViewsPicker', | ||
placeholder: ( localize(1181, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(1182, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
placeholder: ( localize(889, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(890, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
}); | ||
@@ -43,4 +43,4 @@ quickAccessRegistry.registerQuickAccessProvider({ | ||
contextKey: 'inCommandsPicker', | ||
placeholder: ( localize(1183, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(1184, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
placeholder: ( localize(891, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(892, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
}); | ||
@@ -51,3 +51,3 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1185, "&&Command Palette...")) | ||
title: ( localize(893, "&&Command Palette...")) | ||
}, | ||
@@ -60,3 +60,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1186, "Show All Commands")) | ||
title: ( localize(894, "Show All Commands")) | ||
}, | ||
@@ -69,3 +69,3 @@ order: 2 | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize(1187, "&&Open View...")) | ||
title: ( localize(895, "&&Open View...")) | ||
}, | ||
@@ -78,3 +78,3 @@ order: 2 | ||
id: 'workbench.action.gotoLine', | ||
title: ( localize(1188, "Go to &&Line/Column...")) | ||
title: ( localize(896, "Go to &&Line/Column...")) | ||
}, | ||
@@ -87,3 +87,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1189, "Command Palette...")) | ||
title: ( localize(897, "Command Palette...")) | ||
}, | ||
@@ -97,3 +97,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1189, "Command Palette...")), | ||
title: ( localize(897, "Command Palette...")), | ||
}, | ||
@@ -100,0 +100,0 @@ order: 1 |
@@ -30,3 +30,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
noResultsPick: { | ||
label: ( localize(4986, "No matching views")), | ||
label: ( localize(4768, "No matching views")), | ||
containerLabel: '' | ||
@@ -119,5 +119,5 @@ } | ||
}; | ||
addPaneComposites(ViewContainerLocation.Sidebar, ( localize(4987, "Side Bar"))); | ||
addPaneComposites(ViewContainerLocation.Panel, ( localize(4988, "Panel"))); | ||
addPaneComposites(ViewContainerLocation.AuxiliaryBar, ( localize(4989, "Secondary Side Bar"))); | ||
addPaneComposites(ViewContainerLocation.Sidebar, ( localize(4769, "Side Bar"))); | ||
addPaneComposites(ViewContainerLocation.Panel, ( localize(4770, "Panel"))); | ||
addPaneComposites(ViewContainerLocation.AuxiliaryBar, ( localize(4771, "Secondary Side Bar"))); | ||
const addPaneCompositeViews = (location) => { | ||
@@ -137,6 +137,6 @@ const paneComposites = this.paneCompositeService.getPaneComposites(location); | ||
group.terminalInstances.forEach((terminal, terminalIndex) => { | ||
const label = ( localize(4990, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
const label = ( localize(4772, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
viewEntries.push({ | ||
label, | ||
containerLabel: ( localize(4991, "Terminal")), | ||
containerLabel: ( localize(4773, "Terminal")), | ||
accept: async () => { | ||
@@ -153,3 +153,3 @@ await this.terminalGroupService.showPanel(true); | ||
label, | ||
containerLabel: ( localize(4992, "Debug Console")), | ||
containerLabel: ( localize(4774, "Debug Console")), | ||
accept: async () => { | ||
@@ -167,3 +167,3 @@ await this.debugService.focusStackFrame(undefined, undefined, session, { explicit: true }); | ||
label: channel.label, | ||
containerLabel: ( localize(4993, "Output")), | ||
containerLabel: ( localize(4775, "Output")), | ||
accept: () => this.outputService.showChannel(channel.id) | ||
@@ -197,3 +197,3 @@ }); | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize2(4994, 'Open View')), | ||
title: ( localize2(4776, 'Open View')), | ||
category: Categories.View, | ||
@@ -217,3 +217,3 @@ f1: true | ||
id: QuickAccessViewPickerAction.ID, | ||
title: ( localize2(4995, 'Quick Open View')), | ||
title: ( localize2(4777, 'Quick Open View')), | ||
category: Categories.View, | ||
@@ -220,0 +220,0 @@ f1: false, |
@@ -70,3 +70,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
message: ( localize( | ||
4996, | ||
4778, | ||
'Do you want {0} to open the external website?', | ||
@@ -78,7 +78,7 @@ this._productService.nameShort | ||
{ | ||
label: ( localize(4997, '&&Open')), | ||
label: ( localize(4779, '&&Open')), | ||
run: () => true | ||
}, | ||
{ | ||
label: ( localize(4998, '&&Copy')), | ||
label: ( localize(4780, '&&Copy')), | ||
run: () => { | ||
@@ -90,3 +90,3 @@ this._clipboardService.writeText(typeof originalResource === 'string' ? originalResource : ( (resourceUri.toString(true)))); | ||
{ | ||
label: ( localize(4999, 'Configure &&Trusted Domains')), | ||
label: ( localize(4781, 'Configure &&Trusted Domains')), | ||
run: async () => { | ||
@@ -93,0 +93,0 @@ const { trustedDomains, } = this._instantiationService.invokeFunction(readStaticTrustedDomains); |
@@ -25,3 +25,3 @@ import { URI } from 'vscode/vscode/vs/base/common/uri'; | ||
id: 'workbench.action.url.openUrl', | ||
title: ( localize2(1190, 'Open URL')), | ||
title: ( localize2(898, 'Open URL')), | ||
category: Categories.Developer, | ||
@@ -34,3 +34,3 @@ f1: true | ||
const urlService = accessor.get(IURLService); | ||
return quickInputService.input({ prompt: ( localize(1191, "URL to open")) }).then(input => { | ||
return quickInputService.input({ prompt: ( localize(899, "URL to open")) }).then(input => { | ||
if (input) { | ||
@@ -65,3 +65,3 @@ const uri = ( (URI.parse(input))); | ||
description: ( localize( | ||
1192, | ||
900, | ||
"When enabled, trusted domain prompts will appear when opening links in trusted workspaces." | ||
@@ -68,0 +68,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
91277
+ Added@codingame/monaco-vscode-api@8.0.0(transitive)
+ Added@codingame/monaco-vscode-base-service-override@8.0.0(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@8.0.0(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@8.0.0(transitive)
+ Added@codingame/monaco-vscode-files-service-override@8.0.0(transitive)
+ Added@codingame/monaco-vscode-host-service-override@8.0.0(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@8.0.0(transitive)
- Removed@codingame/monaco-vscode-api@7.1.1(transitive)
- Removed@codingame/monaco-vscode-base-service-override@7.1.1(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@7.1.1(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@7.1.1(transitive)
- Removed@codingame/monaco-vscode-files-service-override@7.1.1(transitive)
- Removed@codingame/monaco-vscode-host-service-override@7.1.1(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@7.1.1(transitive)