@codingame/monaco-vscode-keybindings-service-override 12.0.1 → 13.1.0

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.
Files changed (29) hide show
  1. package/index.d.ts +4 -4
  2. package/index.js +23 -23
  3. package/package.json +9 -11
  4. package/vscode/src/vs/platform/keyboardLayout/common/keyboardConfig.d.ts +1 -1
  5. package/vscode/src/vs/platform/keyboardLayout/common/keyboardConfig.js +4 -4
  6. package/vscode/src/vs/platform/keyboardLayout/common/keyboardMapper.d.ts +2 -2
  7. package/vscode/src/vs/workbench/browser/contextkeys.d.ts +11 -11
  8. package/vscode/src/vs/workbench/browser/contextkeys.js +26 -26
  9. package/vscode/src/vs/workbench/contrib/commands/common/commands.contribution.js +11 -11
  10. package/vscode/src/vs/workbench/contrib/keybindings/browser/keybindings.contribution.js +7 -7
  11. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingsEditorContribution.d.ts +3 -3
  12. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingsEditorContribution.js +20 -20
  13. package/vscode/src/vs/workbench/contrib/preferences/common/smartSnippetInserter.d.ts +2 -2
  14. package/vscode/src/vs/workbench/contrib/preferences/common/smartSnippetInserter.js +3 -3
  15. package/vscode/src/vs/workbench/services/actions/common/menusExtensionPoint.d.ts +4 -4
  16. package/vscode/src/vs/workbench/services/actions/common/menusExtensionPoint.js +150 -150
  17. package/vscode/src/vs/workbench/services/commands/common/commandService.d.ts +7 -7
  18. package/vscode/src/vs/workbench/services/commands/common/commandService.js +9 -9
  19. package/vscode/src/vs/workbench/services/keybinding/browser/keybindingService.d.ts +16 -16
  20. package/vscode/src/vs/workbench/services/keybinding/browser/keybindingService.js +66 -66
  21. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayoutService.d.ts +10 -10
  22. package/vscode/src/vs/workbench/services/keybinding/browser/keyboardLayoutService.js +21 -21
  23. package/vscode/src/vs/workbench/services/keybinding/common/keybindingIO.d.ts +3 -3
  24. package/vscode/src/vs/workbench/services/keybinding/common/keybindingIO.js +1 -1
  25. package/vscode/src/vs/workbench/services/keybinding/common/keymapInfo.js +1 -1
  26. package/vscode/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.d.ts +4 -4
  27. package/vscode/src/vs/workbench/services/keybinding/common/macLinuxKeyboardMapper.js +5 -5
  28. package/vscode/src/vs/workbench/services/keybinding/common/windowsKeyboardMapper.d.ts +4 -4
  29. package/vscode/src/vs/workbench/services/keybinding/common/windowsKeyboardMapper.js +7 -7
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import type { IEditorOverrideServices } from "vscode/vscode/vs/editor/standalone/browser/standaloneServices";
2
- import type { IUserFriendlyKeybinding } from "vscode/vscode/vs/platform/keybinding/common/keybinding";
3
- import type { IFileWriteOptions } from "vscode/vscode/vs/platform/files/common/files";
4
- import { URI } from "vscode/vscode/vs/base/common/uri";
1
+ import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
2
+ import type { IUserFriendlyKeybinding } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding";
3
+ import type { IFileWriteOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files";
4
+ import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
5
5
  declare const defaultUserKeybindindsFile: URI;
6
6
  /**
7
7
  * Should be called only BEFORE the service are initialized to initialize the file on the filesystem before the keybindings service initializes
package/index.js CHANGED
@@ -1,36 +1,36 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
4
4
  import { WorkbenchKeybindingService } from './vscode/src/vs/workbench/services/keybinding/browser/keybindingService.js';
5
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
6
- import { VSBuffer } from 'vscode/vscode/vs/base/common/buffer';
7
- import { IUserDataProfilesService } from 'vscode/vscode/vs/platform/userDataProfile/common/userDataProfile.service';
8
- import { IKeyboardLayoutService } from 'vscode/vscode/vs/platform/keyboardLayout/common/keyboardLayout.service';
5
+ import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
6
+ import { VSBuffer } from '@codingame/monaco-vscode-api/vscode/vs/base/common/buffer';
7
+ import { IUserDataProfilesService } from '@codingame/monaco-vscode-api/vscode/vs/platform/userDataProfile/common/userDataProfile.service';
8
+ import { IKeyboardLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keyboardLayout/common/keyboardLayout.service';
9
9
  import { BrowserKeyboardLayoutService } from './vscode/src/vs/workbench/services/keybinding/browser/keyboardLayoutService.js';
10
- import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
11
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
10
+ import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
11
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
12
12
  import { CommandService } from './vscode/src/vs/workbench/services/commands/common/commandService.js';
13
- import { DisposableStore, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
14
- import 'vscode/vscode/vs/platform/keybinding/common/keybindingResolver';
15
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
16
- import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
17
- import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
18
- import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
19
- import { IUserDataProfileService } from 'vscode/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service';
20
- import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
21
- import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
22
- import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
13
+ import { DisposableStore, toDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
14
+ import '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingResolver';
15
+ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
16
+ import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
17
+ import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
18
+ import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
19
+ import { IUserDataProfileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service';
20
+ import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
21
+ import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
22
+ import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
23
23
  import { WorkbenchContextKeysHandler } from './vscode/src/vs/workbench/browser/contextkeys.js';
24
- import { Schemas } from 'vscode/vscode/vs/base/common/network';
25
- import { URI } from 'vscode/vscode/vs/base/common/uri';
26
- import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
24
+ import { Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
25
+ import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
26
+ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
27
27
  import getServiceOverride$1, { initFile } from '@codingame/monaco-vscode-files-service-override';
28
- import { onRenderWorkbench } from 'vscode/lifecycle';
28
+ import { onRenderWorkbench } from '@codingame/monaco-vscode-api/lifecycle';
29
29
  import '@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common/vscode/vs/workbench/browser/workbench.contribution';
30
30
  import './vscode/src/vs/workbench/contrib/keybindings/browser/keybindings.contribution.js';
31
31
  import './vscode/src/vs/workbench/contrib/preferences/browser/keybindingsEditorContribution.js';
32
32
  import './vscode/src/vs/workbench/contrib/commands/common/commands.contribution.js';
33
- import { getService } from 'vscode/services';
33
+ import { getService } from '@codingame/monaco-vscode-api/services';
34
34
 
35
35
  const defaultUserKeybindindsFile = URI.from({
36
36
  scheme: Schemas.vscodeUserData,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-keybindings-service-override",
3
- "version": "12.0.1",
3
+ "version": "13.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - keybindings service-override",
6
6
  "keywords": [],
@@ -15,17 +15,15 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common": "12.0.1",
19
- "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "12.0.1",
20
- "@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common": "12.0.1",
21
- "@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common": "12.0.1",
22
- "@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "12.0.1",
23
- "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common": "12.0.1",
24
- "@codingame/monaco-vscode-files-service-override": "12.0.1",
25
- "vscode": "npm:@codingame/monaco-vscode-api@12.0.1"
18
+ "@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common": "13.1.0",
19
+ "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "13.1.0",
20
+ "@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common": "13.1.0",
21
+ "@codingame/monaco-vscode-api": "13.1.0",
22
+ "@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common": "13.1.0",
23
+ "@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.0",
24
+ "@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.0",
25
+ "@codingame/monaco-vscode-files-service-override": "13.1.0"
26
26
  },
27
- "peerDependencies": {},
28
- "peerDependenciesMeta": {},
29
27
  "main": "index.js",
30
28
  "module": "index.js",
31
29
  "types": "index.d.ts",
@@ -1,4 +1,4 @@
1
- import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
1
+ import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
2
2
  export declare enum DispatchConfig {
3
3
  Code = 0,
4
4
  KeyCode = 1
@@ -1,8 +1,8 @@
1
1
 
2
- import { localize } from 'vscode/vscode/vs/nls';
3
- import { OS, OperatingSystem } from 'vscode/vscode/vs/base/common/platform';
4
- import { Extensions, ConfigurationScope } from 'vscode/vscode/vs/platform/configuration/common/configurationRegistry';
5
- import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
2
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
+ import { OS, OperatingSystem } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
4
+ import { Extensions, ConfigurationScope } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configurationRegistry';
5
+ import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
6
6
 
7
7
  var DispatchConfig;
8
8
  (function (DispatchConfig) {
@@ -1,5 +1,5 @@
1
- import { ResolvedKeybinding, Keybinding } from "vscode/vscode/vs/base/common/keybindings";
2
- import { IKeyboardEvent } from "vscode/vscode/vs/platform/keybinding/common/keybinding";
1
+ import { ResolvedKeybinding, Keybinding } from "@codingame/monaco-vscode-api/vscode/vs/base/common/keybindings";
2
+ import { IKeyboardEvent } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding";
3
3
  export interface IKeyboardMapper {
4
4
  dumpDebugInfo(): string;
5
5
  resolveKeyboardEvent(keyboardEvent: IKeyboardEvent): ResolvedKeybinding;
@@ -1,14 +1,14 @@
1
- import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
2
- import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
3
- import { IEditorGroupsService } from "vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
4
- import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
5
- import { IWorkbenchEnvironmentService } from "vscode/vscode/vs/workbench/services/environment/common/environmentService.service";
6
- import { IWorkspaceContextService } from "vscode/vscode/vs/platform/workspace/common/workspace.service";
7
- import { IWorkbenchLayoutService } from "vscode/vscode/vs/workbench/services/layout/browser/layoutService.service";
8
- import { IWorkingCopyService } from "vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service";
9
- import { IPaneCompositePartService } from "vscode/vscode/vs/workbench/services/panecomposite/browser/panecomposite.service";
10
- import { IProductService } from "vscode/vscode/vs/platform/product/common/productService.service";
11
- import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service";
1
+ import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
2
+ import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
3
+ import { IEditorGroupsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service";
4
+ import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
5
+ import { IWorkbenchEnvironmentService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/common/environmentService.service";
6
+ import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
7
+ import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
8
+ import { IWorkingCopyService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service";
9
+ import { IPaneCompositePartService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/panecomposite/browser/panecomposite.service";
10
+ import { IProductService } from "@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service";
11
+ import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
12
12
  export declare class WorkbenchContextKeysHandler extends Disposable {
13
13
  private readonly contextKeyService;
14
14
  private readonly contextService;
@@ -1,31 +1,31 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { Event } from 'vscode/vscode/vs/base/common/event';
4
- import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
5
- import { setConstant } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
6
- import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
7
- import { IsMacContext, IsLinuxContext, IsWindowsContext, IsWebContext, IsMacNativeContext, IsIOSContext, IsMobileContext, IsDevelopmentContext, ProductQualityContext, InputFocusedContext } from 'vscode/vscode/vs/platform/contextkey/common/contextkeys';
8
- import { RemoteNameContext, VirtualWorkspaceContext, TemporaryWorkspaceContext, HasWebFileSystemAccess, EmbedderIdentifierContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, MultipleEditorGroupsContext, EditorsVisibleContext, DirtyWorkingCopiesContext, WorkbenchStateContext, WorkspaceFolderCountContext, OpenFolderWorkspaceSupportContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, SplitEditorsVertically, IsMainWindowFullscreenContext, IsAuxiliaryWindowFocusedContext, InEditorZenModeContext, IsMainEditorCenteredLayoutContext, MainEditorAreaVisibleContext, EditorTabsVisibleContext, SideBarVisibleContext, TitleBarVisibleContext, TitleBarStyleContext, PanelPositionContext, PanelVisibleContext, PanelMaximizedContext, PanelAlignmentContext, AuxiliaryBarVisibleContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
9
- import { onDidRegisterWindow, addDisposableListener, EventType, isEditableElement, trackFocus, getActiveWindow } from 'vscode/vscode/vs/base/browser/dom';
10
- import { preferredSideBySideGroupDirection, GroupDirection } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService';
11
- import { IEditorGroupsService } from 'vscode/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
12
- import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
13
- import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService.service';
14
- import { WorkbenchState, isTemporaryWorkspace } from 'vscode/vscode/vs/platform/workspace/common/workspace';
15
- import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
16
- import { positionToString, Parts } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/services/layout/browser/layoutService';
17
- import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
18
- import { getRemoteName } from 'vscode/vscode/vs/platform/remote/common/remoteHosts';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
4
+ import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
5
+ import { setConstant } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
6
+ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
7
+ import { IsMacContext, IsLinuxContext, IsWindowsContext, IsWebContext, IsMacNativeContext, IsIOSContext, IsMobileContext, IsDevelopmentContext, ProductQualityContext, InputFocusedContext } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkeys';
8
+ import { RemoteNameContext, VirtualWorkspaceContext, TemporaryWorkspaceContext, HasWebFileSystemAccess, EmbedderIdentifierContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, MultipleEditorGroupsContext, EditorsVisibleContext, DirtyWorkingCopiesContext, WorkbenchStateContext, WorkspaceFolderCountContext, OpenFolderWorkspaceSupportContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, SplitEditorsVertically, IsMainWindowFullscreenContext, IsAuxiliaryWindowFocusedContext, InEditorZenModeContext, IsMainEditorCenteredLayoutContext, MainEditorAreaVisibleContext, EditorTabsVisibleContext, SideBarVisibleContext, TitleBarVisibleContext, TitleBarStyleContext, PanelPositionContext, PanelVisibleContext, PanelMaximizedContext, PanelAlignmentContext, AuxiliaryBarVisibleContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
9
+ import { onDidRegisterWindow, addDisposableListener, EventType, isEditableElement, trackFocus, getActiveWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
10
+ import { preferredSideBySideGroupDirection, GroupDirection } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService';
11
+ import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
12
+ import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
13
+ import { IWorkbenchEnvironmentService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/environment/common/environmentService.service';
14
+ import { WorkbenchState, isTemporaryWorkspace } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
15
+ import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
16
+ import { positionToString, Parts } from '@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common/vscode/vs/workbench/services/layout/browser/layoutService';
17
+ import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
18
+ import { getRemoteName } from '@codingame/monaco-vscode-api/vscode/vs/platform/remote/common/remoteHosts';
19
19
  import { getVirtualWorkspaceScheme } from '@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common/vscode/vs/platform/workspace/common/virtualWorkspace';
20
- import { IWorkingCopyService } from 'vscode/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service';
21
- import { isNative } from 'vscode/vscode/vs/base/common/platform';
22
- import { IPaneCompositePartService } from 'vscode/vscode/vs/workbench/services/panecomposite/browser/panecomposite.service';
23
- import { WebFileSystemAccess } from 'vscode/vscode/vs/platform/files/browser/webFileSystemAccess';
24
- import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService.service';
25
- import { getTitleBarStyle } from 'vscode/vscode/vs/platform/window/common/window';
26
- import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
27
- import { onDidChangeFullscreen, isFullscreen } from 'vscode/vscode/vs/base/browser/browser';
28
- import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
20
+ import { IWorkingCopyService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workingCopy/common/workingCopyService.service';
21
+ import { isNative } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
22
+ import { IPaneCompositePartService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/panecomposite/browser/panecomposite.service';
23
+ import { WebFileSystemAccess } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/browser/webFileSystemAccess';
24
+ import { IProductService } from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/productService.service';
25
+ import { getTitleBarStyle } from '@codingame/monaco-vscode-api/vscode/vs/platform/window/common/window';
26
+ import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
27
+ import { onDidChangeFullscreen, isFullscreen } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/browser';
28
+ import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
29
29
 
30
30
  let WorkbenchContextKeysHandler = class WorkbenchContextKeysHandler extends Disposable {
31
31
  constructor(contextKeyService, contextService, configurationService, environmentService, productService, editorGroupService, editorService, layoutService, paneCompositeService, workingCopyService) {
@@ -1,19 +1,19 @@
1
1
 
2
- import { safeStringify } from 'vscode/vscode/vs/base/common/objects';
3
- import { localize2, localize } from 'vscode/vscode/vs/nls';
4
- import { Action2, registerAction2 } from 'vscode/vscode/vs/platform/actions/common/actions';
5
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
6
- import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
7
- import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
2
+ import { safeStringify } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
3
+ import { localize2, localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
+ import { Action2, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
5
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
6
+ import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
7
+ import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
8
8
 
9
9
  class RunCommands extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: 'runCommands',
13
- title: ( localize2(4786, "Run Commands")),
13
+ title: ( localize2(4804, "Run Commands")),
14
14
  f1: false,
15
15
  metadata: {
16
- description: ( localize(4787, "Run several commands")),
16
+ description: ( localize(4805, "Run several commands")),
17
17
  args: [
18
18
  {
19
19
  name: 'args',
@@ -23,7 +23,7 @@ class RunCommands extends Action2 {
23
23
  properties: {
24
24
  commands: {
25
25
  type: 'array',
26
- description: ( localize(4788, "Commands to run")),
26
+ description: ( localize(4806, "Commands to run")),
27
27
  items: {
28
28
  anyOf: [
29
29
  {
@@ -63,14 +63,14 @@ class RunCommands extends Action2 {
63
63
  const notificationService = accessor.get(INotificationService);
64
64
  if (!this._isCommandArgs(args)) {
65
65
  notificationService.error(( localize(
66
- 4789,
66
+ 4807,
67
67
  "'runCommands' has received an argument with incorrect type. Please, review the argument passed to the command."
68
68
  )));
69
69
  return;
70
70
  }
71
71
  if (args.commands.length === 0) {
72
72
  notificationService.warn(( localize(
73
- 4790,
73
+ 4808,
74
74
  "'runCommands' has not received commands to run. Did you forget to pass commands in the 'runCommands' argument?"
75
75
  )));
76
76
  return;
@@ -1,16 +1,16 @@
1
1
 
2
- import { localize2 } from 'vscode/vscode/vs/nls';
3
- import { Action2, registerAction2 } from 'vscode/vscode/vs/platform/actions/common/actions';
4
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
5
- import { Categories } from 'vscode/vscode/vs/platform/action/common/actionCommonCategories';
6
- import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
7
- import { showWindowLogActionId } from 'vscode/vscode/vs/workbench/services/log/common/logConstants';
2
+ import { localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
+ import { Action2, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
4
+ import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
5
+ import { Categories } from '@codingame/monaco-vscode-api/vscode/vs/platform/action/common/actionCommonCategories';
6
+ import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
7
+ import { showWindowLogActionId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/log/common/logConstants';
8
8
 
9
9
  class ToggleKeybindingsLogAction extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: 'workbench.action.toggleKeybindingsLog',
13
- title: ( localize2(6931, "Toggle Keyboard Shortcuts Troubleshooting")),
13
+ title: ( localize2(6949, "Toggle Keyboard Shortcuts Troubleshooting")),
14
14
  category: Categories.Developer,
15
15
  f1: true
16
16
  });
@@ -1,6 +1,6 @@
1
- import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
2
- import { IKeybindingService } from "vscode/vscode/vs/platform/keybinding/common/keybinding.service";
3
- import { ICodeEditor } from "vscode/vscode/vs/editor/browser/editorBrowser";
1
+ import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
2
+ import { IKeybindingService } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service";
3
+ import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
4
4
  export declare class KeybindingEditorDecorationsRenderer extends Disposable {
5
5
  private _editor;
6
6
  private readonly _keybindingService;
@@ -1,30 +1,30 @@
1
1
 
2
- import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
3
- import { localize } from 'vscode/vscode/vs/nls';
4
- import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
5
- import { MarkdownString } from 'vscode/vscode/vs/base/common/htmlContent';
6
- import { Disposable, MutableDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
7
- import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
8
- import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
9
- import { Range } from 'vscode/vscode/vs/editor/common/core/range';
10
- import { registerEditorContribution, EditorContributionInstantiation } from 'vscode/vscode/vs/editor/browser/editorExtensions';
11
- import { SnippetController2 } from 'vscode/vscode/vs/editor/contrib/snippet/browser/snippetController2';
2
+ import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
+ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
+ import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
5
+ import { MarkdownString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/htmlContent';
6
+ import { Disposable, MutableDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
7
+ import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
8
+ import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
9
+ import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
10
+ import { registerEditorContribution, EditorContributionInstantiation } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions';
11
+ import { SnippetController2 } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/snippet/browser/snippetController2';
12
12
  import { SmartSnippetInserter } from '../common/smartSnippetInserter.js';
13
13
  import { DefineKeybindingOverlayWidget } from '@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common/vscode/vs/workbench/contrib/preferences/browser/keybindingWidgets';
14
- import { parseTree } from 'vscode/vscode/vs/base/common/json';
14
+ import { parseTree } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
15
15
  import { WindowsNativeResolvedKeybinding } from '../../../services/keybinding/common/windowsKeyboardMapper.js';
16
- import { themeColorFromId } from 'vscode/vscode/vs/platform/theme/common/themeService';
17
- import { overviewRulerError, overviewRulerInfo } from 'vscode/vscode/vs/editor/common/core/editorColorRegistry';
18
- import { TrackedRangeStickiness, OverviewRulerLane } from 'vscode/vscode/vs/editor/common/model';
16
+ import { themeColorFromId } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService';
17
+ import { overviewRulerError, overviewRulerInfo } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/editorColorRegistry';
18
+ import { TrackedRangeStickiness, OverviewRulerLane } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model';
19
19
  import { KeybindingParser } from '@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common/vscode/vs/base/common/keybindingParser';
20
- import { assertIsDefined } from 'vscode/vscode/vs/base/common/types';
21
- import { isEqual } from 'vscode/vscode/vs/base/common/resources';
22
- import { IUserDataProfileService } from 'vscode/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service';
20
+ import { assertIsDefined } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
21
+ import { isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
22
+ import { IUserDataProfileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service';
23
23
  import { DEFINE_KEYBINDING_EDITOR_CONTRIB_ID } from '@codingame/monaco-vscode-4a36e358-d94d-55e0-86ee-3bcd543d9d3f-common/vscode/vs/workbench/services/preferences/common/preferences';
24
24
 
25
25
  var KeybindingEditorDecorationsRenderer_1;
26
26
  const NLS_KB_LAYOUT_ERROR_MESSAGE = ( localize(
27
- 7912,
27
+ 7930,
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 {
@@ -182,14 +182,14 @@ let KeybindingEditorDecorationsRenderer = KeybindingEditorDecorationsRenderer_1
182
182
  else {
183
183
  if (usLabel && uiLabel !== usLabel) {
184
184
  msg = ( new MarkdownString(( localize(
185
- 7913,
185
+ 7931,
186
186
  "**{0}** for your current keyboard layout (**{1}** for US standard).",
187
187
  uiLabel,
188
188
  usLabel
189
189
  ))));
190
190
  }
191
191
  else {
192
- msg = ( new MarkdownString(( localize(7914, "**{0}** for your current keyboard layout.", uiLabel))));
192
+ msg = ( new MarkdownString(( localize(7932, "**{0}** for your current keyboard layout.", uiLabel))));
193
193
  }
194
194
  className = 'keybindingInfo';
195
195
  overviewRulerColor = themeColorFromId(overviewRulerInfo);
@@ -1,5 +1,5 @@
1
- import { Position } from "vscode/vscode/vs/editor/common/core/position";
2
- import { ITextModel } from "vscode/vscode/vs/editor/common/model";
1
+ import { Position } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position";
2
+ import { ITextModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/model";
3
3
  export interface InsertSnippetResult {
4
4
  position: Position;
5
5
  prepend: string;
@@ -1,7 +1,7 @@
1
1
 
2
- import { SyntaxKind, createScanner } from 'vscode/vscode/vs/base/common/json';
3
- import { Position } from 'vscode/vscode/vs/editor/common/core/position';
4
- import { Range } from 'vscode/vscode/vs/editor/common/core/range';
2
+ import { SyntaxKind, createScanner } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
3
+ import { Position } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position';
4
+ import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
5
5
 
6
6
  class SmartSnippetInserter {
7
7
  static hasOpenBrace(scanner) {
@@ -1,6 +1,6 @@
1
- import { IJSONSchema } from "vscode/vscode/vs/base/common/jsonSchema";
2
- import { ExtensionMessageCollector } from "vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry";
3
- import { ILocalizedString } from "vscode/vscode/vs/platform/action/common/action";
1
+ import { IJSONSchema } from "@codingame/monaco-vscode-api/vscode/vs/base/common/jsonSchema";
2
+ import { ExtensionMessageCollector } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry";
3
+ import { ILocalizedString } from "@codingame/monaco-vscode-api/vscode/vs/platform/action/common/action";
4
4
  declare namespace schema {
5
5
  interface IUserFriendlyMenuItem {
6
6
  command: string;
@@ -40,5 +40,5 @@ declare namespace schema {
40
40
  function isValidCommand(command: IUserFriendlyCommand, collector: ExtensionMessageCollector): boolean;
41
41
  const commandsContribution: IJSONSchema;
42
42
  }
43
- export declare const commandsExtensionPoint: import("vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry").IExtensionPoint<schema.IUserFriendlyCommand | schema.IUserFriendlyCommand[]>;
43
+ export declare const commandsExtensionPoint: import("@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry").IExtensionPoint<schema.IUserFriendlyCommand | schema.IUserFriendlyCommand[]>;
44
44
  export {};