@codingame/monaco-vscode-quickaccess-service-override
Advanced tools
Comparing version 11.0.1 to 11.0.2
{ | ||
"name": "@codingame/monaco-vscode-quickaccess-service-override", | ||
"version": "11.0.1", | ||
"version": "11.0.2", | ||
"keywords": [], | ||
@@ -29,5 +29,5 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.1", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.1" | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.2", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.2" | ||
} | ||
} |
@@ -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(4613, "recently used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4608, "recently used")) }); | ||
addOtherSeparator = true; | ||
} | ||
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) { | ||
commandPicks.push({ type: 'separator', label: ( localize(4614, "similar commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4609, "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(4615, "commonly used")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4610, "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(4616, "other commands")) }); | ||
commandPicks.push({ type: 'separator', label: ( localize(4611, "other commands")) }); | ||
addOtherSeparator = false; | ||
@@ -169,3 +169,3 @@ } | ||
if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') { | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4614, "similar commands")) }); | ||
commandPicks.unshift({ type: 'separator', label: ( localize(4609, "similar commands")) }); | ||
} | ||
@@ -182,3 +182,3 @@ return commandPicks; | ||
const ariaLabel = keybinding ? | ||
( localize(4617, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
( localize(4612, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) : | ||
commandPick.label; | ||
@@ -203,3 +203,3 @@ return { | ||
if (!isCancellationError(error)) { | ||
this.dialogService.error(( localize(4618, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error)); | ||
this.dialogService.error(( localize(4613, "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(4687, "{0}, {1}", label, helpEntry.description)), | ||
ariaLabel: ( localize(4818, "{0}, {1}", label, helpEntry.description)), | ||
description: helpEntry.description | ||
@@ -54,0 +54,0 @@ }; |
@@ -54,3 +54,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: GotoLineAction.ID, | ||
title: ( localize2(881, 'Go to Line/Column...')), | ||
title: ( localize2(890, 'Go to Line/Column...')), | ||
f1: true, | ||
@@ -74,8 +74,8 @@ keybinding: { | ||
placeholder: ( localize( | ||
882, | ||
891, | ||
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)." | ||
)), | ||
helpEntries: [{ description: ( localize(883, "Go to Line/Column")), commandId: GotoLineAction.ID }] | ||
helpEntries: [{ description: ( localize(892, "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(884, "No matching commands")), | ||
label: ( localize(881, "No matching commands")), | ||
commandId: '' | ||
@@ -103,3 +103,3 @@ }), | ||
iconClass: ThemeIcon.asClassName(Codicon.gear), | ||
tooltip: ( localize(885, "Configure Keybinding")), | ||
tooltip: ( localize(882, "Configure Keybinding")), | ||
}], | ||
@@ -142,3 +142,3 @@ trigger: () => { | ||
additionalPicks.push({ | ||
label: ( localize(886, "Ask {0}: {1}", defaultAgent.fullName, filter)), | ||
label: ( localize(883, "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(887, "{0}: {1}", category, label)); | ||
label = ( localize(884, "{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(888, 'Show All Commands')), | ||
title: ( localize2(885, 'Show All Commands')), | ||
keybinding: { | ||
@@ -240,3 +240,3 @@ weight: 200 , | ||
id: 'workbench.action.clearCommandHistory', | ||
title: ( localize2(889, 'Clear Command History')), | ||
title: ( localize2(886, 'Clear Command History')), | ||
f1: true | ||
@@ -253,5 +253,5 @@ }); | ||
type: 'warning', | ||
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")) | ||
message: ( localize(887, "Do you want to clear the history of recently used commands?")), | ||
detail: ( localize(888, "This action is irreversible!")), | ||
primaryButton: ( localize(889, "&&Clear")) | ||
}); | ||
@@ -258,0 +258,0 @@ if (!confirmed) { |
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
+ Added@codingame/monaco-vscode-api@11.0.2(transitive)
+ Added@codingame/monaco-vscode-base-service-override@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-comments-extensions-common@11.0.2(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@11.0.2(transitive)
+ Added@codingame/monaco-vscode-extensions-service-override@11.0.2(transitive)
+ Added@codingame/monaco-vscode-files-service-override@11.0.2(transitive)
+ Added@codingame/monaco-vscode-host-service-override@11.0.2(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@11.0.2(transitive)
- Removed@codingame/monaco-vscode-api@11.0.1(transitive)
- Removed@codingame/monaco-vscode-base-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-comments-extensions-common@11.0.1(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-extensions-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-files-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-host-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@11.0.1(transitive)