@codingame/monaco-vscode-quickaccess-service-override
Advanced tools
Comparing version 10.1.0 to 10.1.1
{ | ||
"name": "@codingame/monaco-vscode-quickaccess-service-override", | ||
"version": "10.1.0", | ||
"version": "10.1.1", | ||
"keywords": [], | ||
@@ -29,4 +29,4 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@10.1.0" | ||
"vscode": "npm:@codingame/monaco-vscode-api@10.1.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(4764, "recently used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4670, "recently used")) }); | ||
addOtherSeparator = true; | ||
} | ||
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4765, "similar commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4671, "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(4766, "commonly used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4672, "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(4767, "other commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4673, "other commands")) }); | ||
addOtherSeparator = false; | ||
@@ -169,3 +169,3 @@ } | ||
if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') { | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4765, "similar commands")) }); | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4671, "similar commands")) }); | ||
} | ||
@@ -182,3 +182,3 @@ return commandPicks; | ||
const ariaLabel = keybinding ? | ||
( localize(4768, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
( localize(4674, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
commandPick.label; | ||
@@ -203,3 +203,3 @@ return { | ||
if (!isCancellationError(error)) { | ||
this.dialogService.error(( localize(4769, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
this.dialogService.error(( localize(4675, "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(4969, "{0}, {1}", label, helpEntry.description)), | ||
ariaLabel: ( localize(4851, "{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(1074, "Go to File...")), | ||
title: ( localize2(936, "Go to File...")), | ||
metadata: { | ||
@@ -135,3 +135,3 @@ description: `Quick access`, | ||
id: 'workbench.action.quickOpenWithModes', | ||
title: ( localize(1075, "Quick Open")), | ||
title: ( localize(937, "Quick Open")), | ||
icon: Codicon.search, | ||
@@ -177,3 +177,3 @@ menu: { | ||
constructor() { | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(1076, 'Navigate Next in Quick Open')), true, true); | ||
super('workbench.action.quickOpenNavigateNext', ( localize2(938, 'Navigate Next in Quick Open')), true, true); | ||
} | ||
@@ -183,3 +183,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(1077, 'Navigate Previous in Quick Open')), false, true); | ||
super('workbench.action.quickOpenNavigatePrevious', ( localize2(939, 'Navigate Previous in Quick Open')), false, true); | ||
} | ||
@@ -189,3 +189,3 @@ } | ||
constructor() { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(1078, 'Select Next in Quick Open')), true, false, { | ||
super('workbench.action.quickOpenSelectNext', ( localize2(940, 'Select Next in Quick Open')), true, false, { | ||
weight: 200 + 50, | ||
@@ -200,3 +200,3 @@ when: inQuickPickContext, | ||
constructor() { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(1079, 'Select Previous in Quick Open')), false, false, { | ||
super('workbench.action.quickOpenSelectPrevious', ( localize2(941, '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(1065, 'Go to Line/Column...')), | ||
title: ( localize2(927, 'Go to Line/Column...')), | ||
f1: true, | ||
@@ -74,8 +74,8 @@ keybinding: { | ||
placeholder: ( localize( | ||
1066, | ||
928, | ||
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)." | ||
)), | ||
helpEntries: [{ description: ( localize(1067, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
helpEntries: [{ description: ( localize(929, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
}); | ||
export { GotoLineQuickAccessProvider }; |
@@ -25,4 +25,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service'; | ||
import { CHAT_OPEN_ACTION_ID } from 'vscode/vscode/vs/workbench/contrib/chat/browser/actions/chatActions'; | ||
import { ASK_QUICK_QUESTION_ACTION_ID } from 'vscode/vscode/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions'; | ||
import { ASK_QUICK_QUESTION_ACTION_ID, CHAT_OPEN_ACTION_ID } from 'vscode/vscode/vs/workbench/contrib/chat/browser/actions/chatConstants'; | ||
import { ChatAgentLocation } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatAgents'; | ||
@@ -54,3 +53,3 @@ import { IChatAgentService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatAgents.service'; | ||
noResultsPick: () => ({ | ||
label: ( localize(1056, "No matching commands")), | ||
label: ( localize(918, "No matching commands")), | ||
commandId: '' | ||
@@ -104,3 +103,3 @@ }), | ||
iconClass: ThemeIcon.asClassName(Codicon.gear), | ||
tooltip: ( localize(1057, "Configure Keybinding")), | ||
tooltip: ( localize(919, "Configure Keybinding")), | ||
}], | ||
@@ -143,3 +142,3 @@ trigger: () => { | ||
additionalPicks.push({ | ||
label: ( localize(1058, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
label: ( localize(920, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
commandId: this.configuration.experimental.askChatLocation === 'quickChat' ? ASK_QUICK_QUESTION_ACTION_ID : CHAT_OPEN_ACTION_ID, | ||
@@ -178,3 +177,3 @@ args: [filter] | ||
if (category) { | ||
label = ( localize(1059, "{0}: {1}", category, label)); | ||
label = ( localize(921, "{0}: {1}", category, label)); | ||
} | ||
@@ -222,3 +221,3 @@ const aliasLabel = typeof action.item.title !== 'string' ? action.item.title.original : undefined; | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize2(1060, 'Show All Commands')), | ||
title: ( localize2(922, 'Show All Commands')), | ||
keybinding: { | ||
@@ -241,3 +240,3 @@ weight: 200 , | ||
id: 'workbench.action.clearCommandHistory', | ||
title: ( localize2(1061, 'Clear Command History')), | ||
title: ( localize2(923, 'Clear Command History')), | ||
f1: true | ||
@@ -254,5 +253,5 @@ }); | ||
type: 'warning', | ||
message: ( localize(1062, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(1063, "This action is irreversible!")), | ||
primaryButton: ( localize(1064, "&&Clear")) | ||
message: ( localize(924, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(925, "This action is irreversible!")), | ||
primaryButton: ( localize(926, "&&Clear")) | ||
}); | ||
@@ -259,0 +258,0 @@ if (!confirmed) { |
@@ -18,3 +18,3 @@ import { localize } from 'vscode/vscode/vs/nls'; | ||
placeholder: ( localize( | ||
1080, | ||
942, | ||
"Type '{0}' to get help on the actions you can take from here.", | ||
@@ -24,5 +24,5 @@ HelpQuickAccessProvider.PREFIX | ||
helpEntries: [{ | ||
description: ( localize(1081, "Show all Quick Access Providers")), | ||
description: ( localize(943, "Show all Quick Access Providers")), | ||
commandCenterOrder: 70, | ||
commandCenterLabel: ( localize(1082, 'More')) | ||
commandCenterLabel: ( localize(944, 'More')) | ||
}] | ||
@@ -34,4 +34,4 @@ }); | ||
contextKey: 'inViewsPicker', | ||
placeholder: ( localize(1083, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(1084, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
placeholder: ( localize(945, "Type the name of a view, output channel or terminal to open.")), | ||
helpEntries: [{ description: ( localize(946, "Open View")), commandId: OpenViewPickerAction.ID }] | ||
}); | ||
@@ -42,4 +42,4 @@ quickAccessRegistry.registerQuickAccessProvider({ | ||
contextKey: 'inCommandsPicker', | ||
placeholder: ( localize(1085, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(1086, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
placeholder: ( localize(947, "Type the name of a command to run.")), | ||
helpEntries: [{ description: ( localize(948, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }] | ||
}); | ||
@@ -50,3 +50,3 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, { | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1087, "&&Command Palette...")) | ||
title: ( localize(949, "&&Command Palette...")) | ||
}, | ||
@@ -59,3 +59,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1088, "Show All Commands")) | ||
title: ( localize(950, "Show All Commands")) | ||
}, | ||
@@ -68,3 +68,3 @@ order: 2 | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize(1089, "&&Open View...")) | ||
title: ( localize(951, "&&Open View...")) | ||
}, | ||
@@ -77,3 +77,3 @@ order: 2 | ||
id: 'workbench.action.gotoLine', | ||
title: ( localize(1090, "Go to &&Line/Column...")) | ||
title: ( localize(952, "Go to &&Line/Column...")) | ||
}, | ||
@@ -86,3 +86,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1091, "Command Palette...")) | ||
title: ( localize(953, "Command Palette...")) | ||
}, | ||
@@ -96,3 +96,3 @@ order: 1 | ||
id: ShowAllCommandsAction.ID, | ||
title: ( localize(1091, "Command Palette...")), | ||
title: ( localize(953, "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(4970, "No matching views")), | ||
label: ( localize(4852, "No matching views")), | ||
containerLabel: '' | ||
@@ -116,5 +116,5 @@ } | ||
}; | ||
addPaneComposites(0 , ( localize(4971, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4972, "Panel"))); | ||
addPaneComposites(2 , ( localize(4973, "Secondary Side Bar"))); | ||
addPaneComposites(0 , ( localize(4853, "Side Bar"))); | ||
addPaneComposites(1 , ( localize(4854, "Panel"))); | ||
addPaneComposites(2 , ( localize(4855, "Secondary Side Bar"))); | ||
const addPaneCompositeViews = (location) => { | ||
@@ -134,6 +134,6 @@ const paneComposites = this.paneCompositeService.getPaneComposites(location); | ||
group.terminalInstances.forEach((terminal, terminalIndex) => { | ||
const label = ( localize(4974, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
const label = ( localize(4856, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title)); | ||
viewEntries.push({ | ||
label, | ||
containerLabel: ( localize(4975, "Terminal")), | ||
containerLabel: ( localize(4857, "Terminal")), | ||
accept: async () => { | ||
@@ -150,3 +150,3 @@ await this.terminalGroupService.showPanel(true); | ||
label, | ||
containerLabel: ( localize(4976, "Debug Console")), | ||
containerLabel: ( localize(4858, "Debug Console")), | ||
accept: async () => { | ||
@@ -164,3 +164,3 @@ await this.debugService.focusStackFrame(undefined, undefined, session, { explicit: true }); | ||
label: channel.label, | ||
containerLabel: ( localize(4977, "Output")), | ||
containerLabel: ( localize(4859, "Output")), | ||
accept: () => this.outputService.showChannel(channel.id) | ||
@@ -194,3 +194,3 @@ }); | ||
id: OpenViewPickerAction.ID, | ||
title: ( localize2(4978, 'Open View')), | ||
title: ( localize2(4860, 'Open View')), | ||
category: Categories.View, | ||
@@ -214,3 +214,3 @@ f1: true | ||
id: QuickAccessViewPickerAction.ID, | ||
title: ( localize2(4979, 'Quick Open View')), | ||
title: ( localize2(4861, '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( | ||
4980, | ||
4862, | ||
'Do you want {0} to open the external website?', | ||
@@ -78,7 +78,7 @@ this._productService.nameShort | ||
{ | ||
label: ( localize(4981, '&&Open')), | ||
label: ( localize(4863, '&&Open')), | ||
run: () => true | ||
}, | ||
{ | ||
label: ( localize(4982, '&&Copy')), | ||
label: ( localize(4864, '&&Copy')), | ||
run: () => { | ||
@@ -90,3 +90,3 @@ this._clipboardService.writeText(typeof originalResource === 'string' ? originalResource : ( (resourceUri.toString(true)))); | ||
{ | ||
label: ( localize(4983, 'Configure &&Trusted Domains')), | ||
label: ( localize(4865, '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(1092, 'Open URL')), | ||
title: ( localize2(954, 'Open URL')), | ||
category: Categories.Developer, | ||
@@ -32,3 +32,3 @@ f1: true | ||
const urlService = accessor.get(IURLService); | ||
return quickInputService.input({ prompt: ( localize(1093, "URL to open")) }).then(input => { | ||
return quickInputService.input({ prompt: ( localize(955, "URL to open")) }).then(input => { | ||
if (input) { | ||
@@ -61,3 +61,3 @@ const uri = ( (URI.parse(input))); | ||
description: ( localize( | ||
1094, | ||
956, | ||
"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
88691
1791
+ Added@codingame/monaco-vscode-api@10.1.1(transitive)
+ Added@codingame/monaco-vscode-base-service-override@10.1.1(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@10.1.1(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@10.1.1(transitive)
+ Added@codingame/monaco-vscode-files-service-override@10.1.1(transitive)
+ Added@codingame/monaco-vscode-host-service-override@10.1.1(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@10.1.1(transitive)
- Removed@codingame/monaco-vscode-api@10.1.0(transitive)
- Removed@codingame/monaco-vscode-base-service-override@10.1.0(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@10.1.0(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@10.1.0(transitive)
- Removed@codingame/monaco-vscode-files-service-override@10.1.0(transitive)
- Removed@codingame/monaco-vscode-host-service-override@10.1.0(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@10.1.0(transitive)
- Removed@xterm/addon-clipboard@0.2.0-beta.53(transitive)
- Removed@xterm/addon-image@0.9.0-beta.70(transitive)
- Removed@xterm/addon-search@0.16.0-beta.70(transitive)
- Removed@xterm/addon-serialize@0.14.0-beta.70(transitive)
- Removed@xterm/addon-unicode11@0.9.0-beta.70(transitive)
- Removed@xterm/addon-webgl@0.19.0-beta.70(transitive)
- Removed@xterm/xterm@5.6.0-beta.70(transitive)
- Removedjs-base64@3.7.7(transitive)