@codingame/monaco-vscode-quickaccess-service-override
Advanced tools
Comparing version 10.1.2 to 10.1.3
{ | ||
"name": "@codingame/monaco-vscode-quickaccess-service-override", | ||
"version": "10.1.2", | ||
"version": "10.1.3", | ||
"keywords": [], | ||
@@ -12,3 +12,3 @@ "author": { | ||
"type": "git", | ||
"url": "git@github.com:CodinGame/monaco-vscode-api.git" | ||
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git" | ||
}, | ||
@@ -30,4 +30,4 @@ "type": "module", | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@10.1.2" | ||
"vscode": "npm:@codingame/monaco-vscode-api@10.1.3" | ||
} | ||
} |
@@ -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(4581, "recently used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4606, "recently used")) }); | ||
addOtherSeparator = true; | ||
} | ||
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4582, "similar commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4607, "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(4583, "commonly used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4608, "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(4584, "other commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4609, "other commands")) }); | ||
addOtherSeparator = false; | ||
@@ -169,3 +169,3 @@ } | ||
if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') { | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4582, "similar commands")) }); | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4607, "similar commands")) }); | ||
} | ||
@@ -182,3 +182,3 @@ return commandPicks; | ||
const ariaLabel = keybinding ? | ||
( localize(4585, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
( localize(4610, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
commandPick.label; | ||
@@ -203,3 +203,3 @@ return { | ||
if (!isCancellationError(error)) { | ||
this.dialogService.error(( localize(4586, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
this.dialogService.error(( localize(4611, "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(4631, "{0}, {1}", label, helpEntry.description)), | ||
ariaLabel: ( localize(4787, "{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(813, "Go to File...")), | ||
title: ( localize2(903, "Go to File...")), | ||
metadata: { | ||
@@ -135,3 +135,3 @@ description: `Quick access`, | ||
id: 'workbench.action.quickOpenWithModes', | ||
title: ( localize(814, "Quick Open")), | ||
title: ( localize(904, "Quick Open")), | ||
icon: Codicon.search, | ||
@@ -177,3 +177,3 @@ menu: { | ||
constructor() { | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(815, 'Navigate Next in Quick Open')), true, true); | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(905, 'Navigate Next in Quick Open')), true, true); | ||
} | ||
@@ -183,3 +183,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(816, 'Navigate Previous in Quick Open')), false, true); | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(906, 'Navigate Previous in Quick Open')), false, true); | ||
} | ||
@@ -189,3 +189,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(817, 'Select Next in Quick Open')), true, false, { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(907, 'Select Next in Quick Open')), true, false, { | ||
weight: 200 + 50, | ||
@@ -200,3 +200,3 @@ when: inQuickPickContext, | ||
constructor() { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(818, 'Select Previous in Quick Open')), false, false, { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(908, '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(804, 'Go to Line/Column...')), | ||
title: ( localize2(894, 'Go to Line/Column...')), | ||
f1: true, | ||
@@ -74,8 +74,8 @@ keybinding: { | ||
placeholder: ( localize( | ||
805, | ||
895, | ||
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)." | ||
)), | ||
helpEntries: [{ description: ( localize(806, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
helpEntries: [{ description: ( localize(896, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
}); | ||
export { GotoLineQuickAccessProvider }; |
@@ -52,3 +52,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
noResultsPick: () => ({ | ||
label: ( localize(795, "No matching commands")), | ||
label: ( localize(885, "No matching commands")), | ||
commandId: '' | ||
@@ -102,3 +102,3 @@ }), | ||
iconClass: ThemeIcon.asClassName(Codicon.gear), | ||
tooltip: ( localize(796, "Configure Keybinding")), | ||
tooltip: ( localize(886, "Configure Keybinding")), | ||
}], | ||
@@ -141,3 +141,3 @@ trigger: () => { | ||
additionalPicks.push({ | ||
label: ( localize(797, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
label: ( localize(887, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
commandId: this.configuration.experimental.askChatLocation === 'quickChat' ? ASK_QUICK_QUESTION_ACTION_ID : CHAT_OPEN_ACTION_ID, | ||
@@ -176,3 +176,3 @@ args: [filter] | ||
if (category) { | ||
label = ( localize(798, "{0}: {1}", category, label)); | ||
label = ( localize(888, "{0}: {1}", category, label)); | ||
} | ||
@@ -220,3 +220,3 @@ const aliasLabel = typeof action.item.title !== 'string' ? action.item.title.original : undefined; | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize2(799, 'Show All Commands')), | ||
title: ( localize2(889, 'Show All Commands')), | ||
keybinding: { | ||
@@ -239,3 +239,3 @@ weight: 200 , | ||
id: 'workbench.action.clearCommandHistory', | ||
title: ( localize2(800, 'Clear Command History')), | ||
title: ( localize2(890, 'Clear Command History')), | ||
f1: true | ||
@@ -252,5 +252,5 @@ }); | ||
type: 'warning', | ||
message: ( localize(801, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(802, "This action is irreversible!")), | ||
primaryButton: ( localize(803, "&&Clear")) | ||
message: ( localize(891, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(892, "This action is irreversible!")), | ||
primaryButton: ( localize(893, "&&Clear")) | ||
}); | ||
@@ -257,0 +257,0 @@ if (!confirmed) { |
@@ -18,3 +18,3 @@ import { localize } from 'vscode/vscode/vs/nls'; | ||
placeholder: ( localize( | ||
819, | ||
909, | ||
"Type '{0}' to get help on the actions you can take from here.", | ||
@@ -24,5 +24,5 @@ HelpQuickAccessProvider.PREFIX | ||
helpEntries: [{ | ||
description: ( localize(820, "Show all Quick Access Providers")), | ||
description: ( localize(910, "Show all Quick Access Providers")), | ||
commandCenterOrder: 70, | ||
commandCenterLabel: ( localize(821, 'More')) | ||
commandCenterLabel: ( localize(911, 'More')) | ||
}] | ||
@@ -34,4 +34,4 @@ }); | ||
contextKey: 'inViewsPicker', | ||
placeholder: ( localize(822, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(823, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
placeholder: ( localize(912, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(913, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
}); | ||
@@ -42,4 +42,4 @@ quickAccessRegistry.registerQuickAccessProvider({ | ||
contextKey: 'inCommandsPicker', | ||
placeholder: ( localize(824, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(825, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
placeholder: ( localize(914, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(915, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
}); | ||
@@ -50,3 +50,3 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(826, "&&Command Palette...")) | ||
title: ( localize(916, "&&Command Palette...")) | ||
}, | ||
@@ -59,3 +59,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(827, "Show All Commands")) | ||
title: ( localize(917, "Show All Commands")) | ||
}, | ||
@@ -68,3 +68,3 @@ order: 2 | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize(828, "&&Open View...")) | ||
title: ( localize(918, "&&Open View...")) | ||
}, | ||
@@ -77,3 +77,3 @@ order: 2 | ||
id: 'workbench.action.gotoLine', | ||
title: ( localize(829, "Go to &&Line/Column...")) | ||
title: ( localize(919, "Go to &&Line/Column...")) | ||
}, | ||
@@ -86,3 +86,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(830, "Command Palette...")) | ||
title: ( localize(920, "Command Palette...")) | ||
}, | ||
@@ -96,3 +96,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(830, "Command Palette...")), | ||
title: ( localize(920, "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(4763, "No matching views")), | ||
label: ( localize(4788, "No matching views")), | ||
containerLabel: '' | ||
@@ -116,5 +116,5 @@ } | ||
}; | ||
addPaneComposites(0 , ( localize(4764, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4765, "Panel"))); | ||
addPaneComposites(2 , ( localize(4766, "Secondary Side Bar"))); | ||
addPaneComposites(0 , ( localize(4789, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4790, "Panel"))); | ||
addPaneComposites(2 , ( localize(4791, "Secondary Side Bar"))); | ||
const addPaneCompositeViews = (location) => { | ||
@@ -134,6 +134,6 @@ const paneComposites = this.paneCompositeService.getPaneComposites(location); | ||
group.terminalInstances.forEach((terminal, terminalIndex) => { | ||
const label = ( localize(4767, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
const label = ( localize(4792, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
viewEntries.push({ | ||
label, | ||
containerLabel: ( localize(4768, "Terminal")), | ||
containerLabel: ( localize(4793, "Terminal")), | ||
accept: async () => { | ||
@@ -150,3 +150,3 @@ await this.terminalGroupService.showPanel(true); | ||
label, | ||
containerLabel: ( localize(4769, "Debug Console")), | ||
containerLabel: ( localize(4794, "Debug Console")), | ||
accept: async () => { | ||
@@ -164,3 +164,3 @@ await this.debugService.focusStackFrame(undefined, undefined, session, { explicit: true }); | ||
label: channel.label, | ||
containerLabel: ( localize(4770, "Output")), | ||
containerLabel: ( localize(4795, "Output")), | ||
accept: () => this.outputService.showChannel(channel.id) | ||
@@ -194,3 +194,3 @@ }); | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize2(4771, 'Open View')), | ||
title: ( localize2(4796, 'Open View')), | ||
category: Categories.View, | ||
@@ -214,3 +214,3 @@ f1: true | ||
id: QuickAccessViewPickerAction.ID, | ||
title: ( localize2(4772, 'Quick Open View')), | ||
title: ( localize2(4797, '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( | ||
4773, | ||
4798, | ||
'Do you want {0} to open the external website?', | ||
@@ -78,7 +78,7 @@ this._productService.nameShort | ||
{ | ||
label: ( localize(4774, '&&Open')), | ||
label: ( localize(4799, '&&Open')), | ||
run: () => true | ||
}, | ||
{ | ||
label: ( localize(4775, '&&Copy')), | ||
label: ( localize(4800, '&&Copy')), | ||
run: () => { | ||
@@ -90,3 +90,3 @@ this._clipboardService.writeText(typeof originalResource === 'string' ? originalResource : ( (resourceUri.toString(true)))); | ||
{ | ||
label: ( localize(4776, 'Configure &&Trusted Domains')), | ||
label: ( localize(4801, '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(831, 'Open URL')), | ||
title: ( localize2(921, 'Open URL')), | ||
category: Categories.Developer, | ||
@@ -32,3 +32,3 @@ f1: true | ||
const urlService = accessor.get(IURLService); | ||
return quickInputService.input({ prompt: ( localize(832, "URL to open")) }).then(input => { | ||
return quickInputService.input({ prompt: ( localize(922, "URL to open")) }).then(input => { | ||
if (input) { | ||
@@ -61,3 +61,3 @@ const uri = ( (URI.parse(input))); | ||
description: ( localize( | ||
833, | ||
923, | ||
"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
88701
+ Added@codingame/monaco-vscode-api@10.1.3(transitive)
+ Added@codingame/monaco-vscode-base-service-override@10.1.3(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@10.1.3(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@10.1.3(transitive)
+ Added@codingame/monaco-vscode-files-service-override@10.1.3(transitive)
+ Added@codingame/monaco-vscode-host-service-override@10.1.3(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@10.1.3(transitive)
- Removed@codingame/monaco-vscode-api@10.1.2(transitive)
- Removed@codingame/monaco-vscode-base-service-override@10.1.2(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@10.1.2(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@10.1.2(transitive)
- Removed@codingame/monaco-vscode-files-service-override@10.1.2(transitive)
- Removed@codingame/monaco-vscode-host-service-override@10.1.2(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@10.1.2(transitive)