New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-quickaccess-service-override

Package Overview
Dependencies
Maintainers
6
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-quickaccess-service-override - npm Package Compare versions

Comparing version 9.0.0 to 9.0.2

4

package.json
{
"name": "@codingame/monaco-vscode-quickaccess-service-override",
"version": "9.0.0",
"version": "9.0.2",
"keywords": [],

@@ -29,4 +29,4 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@9.0.0"
"vscode": "npm:@codingame/monaco-vscode-api@9.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(4665, "recently used")) });
commandPicks.push({ type: 'separator', label: ( localize(4579, "recently used")) });
addOtherSeparator = true;
}
if (addSuggestedSeparator && commandPick.tfIdfScore !== undefined) {
commandPicks.push({ type: 'separator', label: ( localize(4666, "similar commands")) });
commandPicks.push({ type: 'separator', label: ( localize(4580, "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(4667, "commonly used")) });
commandPicks.push({ type: 'separator', label: ( localize(4581, "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(4668, "other commands")) });
commandPicks.push({ type: 'separator', label: ( localize(4582, "other commands")) });
addOtherSeparator = false;

@@ -169,3 +169,3 @@ }

if (addSuggestedSeparator && commandPicks[0]?.type !== 'separator') {
commandPicks.unshift({ type: 'separator', label: ( localize(4666, "similar commands")) });
commandPicks.unshift({ type: 'separator', label: ( localize(4580, "similar commands")) });
}

@@ -182,3 +182,3 @@ return commandPicks;

const ariaLabel = keybinding ?
( localize(4669, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) :
( localize(4583, "{0}, {1}", commandPick.label, keybinding.getAriaLabel())) :
commandPick.label;

@@ -203,3 +203,3 @@ return {

if (!isCancellationError(error)) {
this.dialogService.error(( localize(4670, "Command '{0}' resulted in an error", commandPick.label)), toErrorMessage(error));
this.dialogService.error(( localize(4584, "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(4736, "{0}, {1}", label, helpEntry.description)),
ariaLabel: ( localize(4780, "{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(1059, "Go to File...")),
title: ( localize2(891, "Go to File...")),
metadata: {

@@ -136,3 +136,3 @@ description: `Quick access`,

id: 'workbench.action.quickOpenWithModes',
title: ( localize(1060, "Quick Open")),
title: ( localize(892, "Quick Open")),
icon: Codicon.search,

@@ -178,3 +178,3 @@ menu: {

constructor() {
super('workbench.action.quickOpenNavigateNext', ( localize2(1061, 'Navigate Next in Quick Open')), true, true);
super('workbench.action.quickOpenNavigateNext', ( localize2(893, 'Navigate Next in Quick Open')), true, true);
}

@@ -184,3 +184,3 @@ }

constructor() {
super('workbench.action.quickOpenNavigatePrevious', ( localize2(1062, 'Navigate Previous in Quick Open')), false, true);
super('workbench.action.quickOpenNavigatePrevious', ( localize2(894, 'Navigate Previous in Quick Open')), false, true);
}

@@ -190,3 +190,3 @@ }

constructor() {
super('workbench.action.quickOpenSelectNext', ( localize2(1063, 'Select Next in Quick Open')), true, false, {
super('workbench.action.quickOpenSelectNext', ( localize2(895, 'Select Next in Quick Open')), true, false, {
weight: KeybindingWeight.WorkbenchContrib + 50,

@@ -201,3 +201,3 @@ when: inQuickPickContext,

constructor() {
super('workbench.action.quickOpenSelectPrevious', ( localize2(1064, 'Select Previous in Quick Open')), false, false, {
super('workbench.action.quickOpenSelectPrevious', ( localize2(896, 'Select Previous in Quick Open')), false, false, {
weight: KeybindingWeight.WorkbenchContrib + 50,

@@ -204,0 +204,0 @@ when: inQuickPickContext,

@@ -56,3 +56,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: GotoLineAction.ID,
title: ( localize2(1050, 'Go to Line/Column...')),
title: ( localize2(882, 'Go to Line/Column...')),
f1: true,

@@ -76,8 +76,8 @@ keybinding: {

placeholder: ( localize(
1051,
883,
"Type the line number and optional column to go to (e.g. 42:5 for line 42 and column 5)."
)),
helpEntries: [{ description: ( localize(1052, "Go to Line/Column")), commandId: GotoLineAction.ID }]
helpEntries: [{ description: ( localize(884, "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(1041, "No matching commands")),
label: ( localize(873, "No matching commands")),
commandId: ''

@@ -106,3 +106,3 @@ }),

iconClass: ThemeIcon.asClassName(Codicon.gear),
tooltip: ( localize(1042, "Configure Keybinding")),
tooltip: ( localize(874, "Configure Keybinding")),
}],

@@ -145,3 +145,3 @@ trigger: () => {

additionalPicks.push({
label: ( localize(1043, "Ask {0}: {1}", defaultAgent.fullName, filter)),
label: ( localize(875, "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(1044, "{0}: {1}", category, label));
label = ( localize(876, "{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(1045, 'Show All Commands')),
title: ( localize2(877, 'Show All Commands')),
keybinding: {

@@ -243,3 +243,3 @@ weight: KeybindingWeight.WorkbenchContrib,

id: 'workbench.action.clearCommandHistory',
title: ( localize2(1046, 'Clear Command History')),
title: ( localize2(878, 'Clear Command History')),
f1: true

@@ -256,5 +256,5 @@ });

type: 'warning',
message: ( localize(1047, "Do you want to clear the history of recently used commands?")),
detail: ( localize(1048, "This action is irreversible!")),
primaryButton: ( localize(1049, "&&Clear"))
message: ( localize(879, "Do you want to clear the history of recently used commands?")),
detail: ( localize(880, "This action is irreversible!")),
primaryButton: ( localize(881, "&&Clear"))
});

@@ -261,0 +261,0 @@ if (!confirmed) {

@@ -19,3 +19,3 @@ import { localize } from 'vscode/vscode/vs/nls';

placeholder: ( localize(
1065,
897,
"Type '{0}' to get help on the actions you can take from here.",

@@ -25,5 +25,5 @@ HelpQuickAccessProvider.PREFIX

helpEntries: [{
description: ( localize(1066, "Show all Quick Access Providers")),
description: ( localize(898, "Show all Quick Access Providers")),
commandCenterOrder: 70,
commandCenterLabel: ( localize(1067, 'More'))
commandCenterLabel: ( localize(899, 'More'))
}]

@@ -35,4 +35,4 @@ });

contextKey: 'inViewsPicker',
placeholder: ( localize(1068, "Type the name of a view, output channel or terminal to open.")),
helpEntries: [{ description: ( localize(1069, "Open View")), commandId: OpenViewPickerAction.ID }]
placeholder: ( localize(900, "Type the name of a view, output channel or terminal to open.")),
helpEntries: [{ description: ( localize(901, "Open View")), commandId: OpenViewPickerAction.ID }]
});

@@ -43,4 +43,4 @@ quickAccessRegistry.registerQuickAccessProvider({

contextKey: 'inCommandsPicker',
placeholder: ( localize(1070, "Type the name of a command to run.")),
helpEntries: [{ description: ( localize(1071, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }]
placeholder: ( localize(902, "Type the name of a command to run.")),
helpEntries: [{ description: ( localize(903, "Show and Run Commands")), commandId: ShowAllCommandsAction.ID, commandCenterOrder: 20 }]
});

@@ -51,3 +51,3 @@ MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {

id: ShowAllCommandsAction.ID,
title: ( localize(1072, "&&Command Palette..."))
title: ( localize(904, "&&Command Palette..."))
},

@@ -60,3 +60,3 @@ order: 1

id: ShowAllCommandsAction.ID,
title: ( localize(1073, "Show All Commands"))
title: ( localize(905, "Show All Commands"))
},

@@ -69,3 +69,3 @@ order: 2

id: OpenViewPickerAction.ID,
title: ( localize(1074, "&&Open View..."))
title: ( localize(906, "&&Open View..."))
},

@@ -78,3 +78,3 @@ order: 2

id: 'workbench.action.gotoLine',
title: ( localize(1075, "Go to &&Line/Column..."))
title: ( localize(907, "Go to &&Line/Column..."))
},

@@ -87,3 +87,3 @@ order: 1

id: ShowAllCommandsAction.ID,
title: ( localize(1076, "Command Palette..."))
title: ( localize(908, "Command Palette..."))
},

@@ -97,3 +97,3 @@ order: 1

id: ShowAllCommandsAction.ID,
title: ( localize(1076, "Command Palette...")),
title: ( localize(908, "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(4737, "No matching views")),
label: ( localize(4781, "No matching views")),
containerLabel: ''

@@ -119,5 +119,5 @@ }

};
addPaneComposites(ViewContainerLocation.Sidebar, ( localize(4738, "Side Bar")));
addPaneComposites(ViewContainerLocation.Panel, ( localize(4739, "Panel")));
addPaneComposites(ViewContainerLocation.AuxiliaryBar, ( localize(4740, "Secondary Side Bar")));
addPaneComposites(ViewContainerLocation.Sidebar, ( localize(4782, "Side Bar")));
addPaneComposites(ViewContainerLocation.Panel, ( localize(4783, "Panel")));
addPaneComposites(ViewContainerLocation.AuxiliaryBar, ( localize(4784, "Secondary Side Bar")));
const addPaneCompositeViews = (location) => {

@@ -137,6 +137,6 @@ const paneComposites = this.paneCompositeService.getPaneComposites(location);

group.terminalInstances.forEach((terminal, terminalIndex) => {
const label = ( localize(4741, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title));
const label = ( localize(4785, "{0}: {1}", `${groupIndex + 1}.${terminalIndex + 1}`, terminal.title));
viewEntries.push({
label,
containerLabel: ( localize(4742, "Terminal")),
containerLabel: ( localize(4786, "Terminal")),
accept: async () => {

@@ -153,3 +153,3 @@ await this.terminalGroupService.showPanel(true);

label,
containerLabel: ( localize(4743, "Debug Console")),
containerLabel: ( localize(4787, "Debug Console")),
accept: async () => {

@@ -167,3 +167,3 @@ await this.debugService.focusStackFrame(undefined, undefined, session, { explicit: true });

label: channel.label,
containerLabel: ( localize(4744, "Output")),
containerLabel: ( localize(4788, "Output")),
accept: () => this.outputService.showChannel(channel.id)

@@ -197,3 +197,3 @@ });

id: OpenViewPickerAction.ID,
title: ( localize2(4745, 'Open View')),
title: ( localize2(4789, 'Open View')),
category: Categories.View,

@@ -217,3 +217,3 @@ f1: true

id: QuickAccessViewPickerAction.ID,
title: ( localize2(4746, 'Quick Open View')),
title: ( localize2(4790, '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(
4877,
4791,
'Do you want {0} to open the external website?',

@@ -78,7 +78,7 @@ this._productService.nameShort

{
label: ( localize(4878, '&&Open')),
label: ( localize(4792, '&&Open')),
run: () => true
},
{
label: ( localize(4879, '&&Copy')),
label: ( localize(4793, '&&Copy')),
run: () => {

@@ -90,3 +90,3 @@ this._clipboardService.writeText(typeof originalResource === 'string' ? originalResource : ( (resourceUri.toString(true))));

{
label: ( localize(4880, 'Configure &&Trusted Domains')),
label: ( localize(4794, '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(1077, 'Open URL')),
title: ( localize2(909, 'Open URL')),
category: Categories.Developer,

@@ -34,3 +34,3 @@ f1: true

const urlService = accessor.get(IURLService);
return quickInputService.input({ prompt: ( localize(1078, "URL to open")) }).then(input => {
return quickInputService.input({ prompt: ( localize(910, "URL to open")) }).then(input => {
if (input) {

@@ -65,3 +65,3 @@ const uri = ( (URI.parse(input)));

description: ( localize(
1079,
911,
"When enabled, trusted domain prompts will appear when opening links in trusted workspaces."

@@ -68,0 +68,0 @@ ))

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc