@codingame/monaco-vscode-keybindings-service-override 33.0.9 → 34.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-keybindings-service-override",
3
- "version": "33.0.9",
3
+ "version": "34.0.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - keybindings service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "33.0.9",
19
- "@codingame/monaco-vscode-files-service-override": "33.0.9"
18
+ "@codingame/monaco-vscode-api": "34.0.1",
19
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -23,7 +23,7 @@ const keyboardConfiguration = {
23
23
  "id": "keyboard",
24
24
  "order": 15,
25
25
  "type": "object",
26
- "title": ( localize(2028, "Keyboard")),
26
+ "title": ( localize(2058, "Keyboard")),
27
27
  "properties": {
28
28
  "keyboard.dispatch": {
29
29
  scope: ConfigurationScope.APPLICATION,
@@ -31,7 +31,7 @@ const keyboardConfiguration = {
31
31
  enum: ["code", "keyCode"],
32
32
  default: "code",
33
33
  markdownDescription: ( localize(
34
- 2029,
34
+ 2059,
35
35
  "Controls the dispatching logic for key presses to use either `code` (recommended) or `keyCode`."
36
36
  )),
37
37
  included: OS === OperatingSystem.Macintosh || OS === OperatingSystem.Linux
@@ -40,7 +40,7 @@ const keyboardConfiguration = {
40
40
  scope: ConfigurationScope.APPLICATION,
41
41
  type: "boolean",
42
42
  default: false,
43
- markdownDescription: ( localize(2030, "Controls if the AltGraph+ modifier should be treated as Ctrl+Alt+.")),
43
+ markdownDescription: ( localize(2060, "Controls if the AltGraph+ modifier should be treated as Ctrl+Alt+.")),
44
44
  included: OS === OperatingSystem.Windows
45
45
  }
46
46
  }
@@ -10,10 +10,10 @@ class RunCommands extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: "runCommands",
13
- title: ( localize2(8420, "Run Commands")),
13
+ title: ( localize2(8579, "Run Commands")),
14
14
  f1: false,
15
15
  metadata: {
16
- description: ( localize(8421, "Run several commands")),
16
+ description: ( localize(8580, "Run several commands")),
17
17
  args: [{
18
18
  name: "args",
19
19
  schema: {
@@ -22,7 +22,7 @@ class RunCommands extends Action2 {
22
22
  properties: {
23
23
  commands: {
24
24
  type: "array",
25
- description: ( localize(8422, "Commands to run")),
25
+ description: ( localize(8581, "Commands to run")),
26
26
  items: {
27
27
  anyOf: [{
28
28
  $ref: "vscode://schemas/keybindings#/definitions/commandNames"
@@ -54,14 +54,14 @@ class RunCommands extends Action2 {
54
54
  const notificationService = accessor.get(INotificationService);
55
55
  if (!this._isCommandArgs(args)) {
56
56
  notificationService.error(( localize(
57
- 8423,
57
+ 8582,
58
58
  "'runCommands' has received an argument with incorrect type. Please, review the argument passed to the command."
59
59
  )));
60
60
  return;
61
61
  }
62
62
  if (args.commands.length === 0) {
63
63
  notificationService.warn(( localize(
64
- 8424,
64
+ 8583,
65
65
  "'runCommands' has not received commands to run. Did you forget to pass commands in the 'runCommands' argument?"
66
66
  )));
67
67
  return;
@@ -15,7 +15,7 @@ class ToggleKeybindingsLogAction extends Action2 {
15
15
  constructor() {
16
16
  super({
17
17
  id: "workbench.action.toggleKeybindingsLog",
18
- title: ( localize2(10718, "Toggle Keyboard Shortcuts Troubleshooting")),
18
+ title: ( localize2(10887, "Toggle Keyboard Shortcuts Troubleshooting")),
19
19
  category: Categories.Developer,
20
20
  f1: true
21
21
  });
@@ -24,7 +24,7 @@ import { DEFINE_KEYBINDING_EDITOR_CONTRIB_ID } from '@codingame/monaco-vscode-ap
24
24
 
25
25
  var KeybindingEditorDecorationsRenderer_1;
26
26
  const NLS_KB_LAYOUT_ERROR_MESSAGE = ( localize(
27
- 12222,
27
+ 12410,
28
28
  "You won't be able to produce this key combination under your current keyboard layout."
29
29
  ));
30
30
  let DefineKeybindingEditorContribution = class DefineKeybindingEditorContribution extends Disposable {
@@ -184,13 +184,13 @@ let KeybindingEditorDecorationsRenderer = KeybindingEditorDecorationsRenderer_1
184
184
  } else {
185
185
  if (usLabel && uiLabel !== usLabel) {
186
186
  msg = ( new MarkdownString(( localize(
187
- 12223,
187
+ 12411,
188
188
  "**{0}** for your current keyboard layout (**{1}** for US standard).",
189
189
  uiLabel,
190
190
  usLabel
191
191
  ))));
192
192
  } else {
193
- msg = ( new MarkdownString(( localize(12224, "**{0}** for your current keyboard layout.", uiLabel))));
193
+ msg = ( new MarkdownString(( localize(12412, "**{0}** for your current keyboard layout.", uiLabel))));
194
194
  }
195
195
  className = "keybindingInfo";
196
196
  overviewRulerColor = themeColorFromId(overviewRulerInfo);