@theia/keymaps 1.67.0-next.13 → 1.67.0-next.56
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/README.md +2 -2
- package/package.json +6 -6
- package/lib/browser/index.d.ts +0 -4
- package/lib/browser/index.d.ts.map +0 -1
- package/lib/browser/index.js +0 -22
- package/lib/browser/index.js.map +0 -1
- package/lib/browser/keybinding-schema-updater.d.ts +0 -78
- package/lib/browser/keybinding-schema-updater.d.ts.map +0 -1
- package/lib/browser/keybinding-schema-updater.js +0 -109
- package/lib/browser/keybinding-schema-updater.js.map +0 -1
- package/lib/browser/keybindings-widget.d.ts +0 -276
- package/lib/browser/keybindings-widget.d.ts.map +0 -1
- package/lib/browser/keybindings-widget.js +0 -815
- package/lib/browser/keybindings-widget.js.map +0 -1
- package/lib/browser/keymaps-frontend-contribution.d.ts +0 -38
- package/lib/browser/keymaps-frontend-contribution.d.ts.map +0 -1
- package/lib/browser/keymaps-frontend-contribution.js +0 -286
- package/lib/browser/keymaps-frontend-contribution.js.map +0 -1
- package/lib/browser/keymaps-frontend-module.d.ts +0 -6
- package/lib/browser/keymaps-frontend-module.d.ts.map +0 -1
- package/lib/browser/keymaps-frontend-module.js +0 -46
- package/lib/browser/keymaps-frontend-module.js.map +0 -1
- package/lib/browser/keymaps-monaco-contribution.d.ts +0 -2
- package/lib/browser/keymaps-monaco-contribution.d.ts.map +0 -1
- package/lib/browser/keymaps-monaco-contribution.js +0 -28
- package/lib/browser/keymaps-monaco-contribution.js.map +0 -1
- package/lib/browser/keymaps-service.d.ts +0 -62
- package/lib/browser/keymaps-service.d.ts.map +0 -1
- package/lib/browser/keymaps-service.js +0 -224
- package/lib/browser/keymaps-service.js.map +0 -1
- package/lib/package.spec.d.ts +0 -1
- package/lib/package.spec.d.ts.map +0 -1
- package/lib/package.spec.js +0 -26
- package/lib/package.spec.js.map +0 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ You can use `shift`, `ctrl`, `alt`, `meta`, `option` (`alt`), `command` (`meta`)
|
|
|
38
38
|
|
|
39
39
|
You can also use the following strings for special keys: `backspace`, `tab`, `enter`, `return`, `capslock`, `esc`, `escape`, `space`, `pageup`, `pagedown`, `end`, `home`, `left`, `up`, `right`, `down`, `ins`, `del` and `plus`.
|
|
40
40
|
|
|
41
|
-
If unsure you can always look at the framework's [supported keys](https://eclipse-theia.github.io/theia/docs/next/modules/
|
|
41
|
+
If unsure you can always look at the framework's [supported keys](https://eclipse-theia.github.io/theia/docs/next/modules/_theia_core.common_keys.Key.html)
|
|
42
42
|
|
|
43
43
|
## Key Sequences
|
|
44
44
|
|
|
@@ -49,7 +49,7 @@ Key sequences like: `ctrl+x ctrl+a` or `ctrl+a b c` are supported. With the fol
|
|
|
49
49
|
|
|
50
50
|
## Additional Information
|
|
51
51
|
|
|
52
|
-
- [API documentation for `@theia/keymaps`](https://eclipse-theia.github.io/theia/docs/next/modules/
|
|
52
|
+
- [API documentation for `@theia/keymaps`](https://eclipse-theia.github.io/theia/docs/next/modules/_theia_keymaps.html)
|
|
53
53
|
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
54
54
|
- [Theia - Website](https://theia-ide.org/)
|
|
55
55
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/keymaps",
|
|
3
|
-
"version": "1.67.0-next.
|
|
3
|
+
"version": "1.67.0-next.56+d8f18cc386c",
|
|
4
4
|
"description": "Theia - Custom Keymaps Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.67.0-next.
|
|
7
|
-
"@theia/monaco": "1.67.0-next.
|
|
6
|
+
"@theia/core": "1.67.0-next.56+d8f18cc386c",
|
|
7
|
+
"@theia/monaco": "1.67.0-next.56+d8f18cc386c",
|
|
8
8
|
"@theia/monaco-editor-core": "1.96.302",
|
|
9
|
-
"@theia/preferences": "1.67.0-next.
|
|
10
|
-
"@theia/userstorage": "1.67.0-next.
|
|
9
|
+
"@theia/preferences": "1.67.0-next.56+d8f18cc386c",
|
|
10
|
+
"@theia/userstorage": "1.67.0-next.56+d8f18cc386c",
|
|
11
11
|
"jsonc-parser": "^2.2.0",
|
|
12
12
|
"tslib": "^2.6.2"
|
|
13
13
|
},
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"nyc": {
|
|
50
50
|
"extends": "../../configs/nyc.json"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "d8f18cc386c45a736cd193d42eab02c8f64c6b10"
|
|
53
53
|
}
|
package/lib/browser/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":"AAgBA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,iCAAiC,CAAC"}
|
package/lib/browser/index.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *****************************************************************************
|
|
3
|
-
// Copyright (C) 2017 Ericsson and others.
|
|
4
|
-
//
|
|
5
|
-
// This program and the accompanying materials are made available under the
|
|
6
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
//
|
|
9
|
-
// This Source Code may also be made available under the following Secondary
|
|
10
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
// with the GNU Classpath Exception which is available at
|
|
13
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
//
|
|
15
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
-
// *****************************************************************************
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
const tslib_1 = require("tslib");
|
|
19
|
-
tslib_1.__exportStar(require("./keymaps-frontend-module"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./keymaps-service"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./keymaps-frontend-contribution"), exports);
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
package/lib/browser/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/browser/index.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,0CAA0C;AAC1C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;AAEhF,oEAA0C;AAC1C,4DAAkC;AAClC,0EAAgD"}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { CommandRegistry } from '@theia/core/lib/common';
|
|
2
|
-
import { JsonSchemaContribution, JsonSchemaDataStore, JsonSchemaRegisterContext } from '@theia/core/lib/browser/json-schema-store';
|
|
3
|
-
import URI from '@theia/core/lib/common/uri';
|
|
4
|
-
export declare class KeybindingSchemaUpdater implements JsonSchemaContribution {
|
|
5
|
-
protected readonly uri: URI;
|
|
6
|
-
protected readonly commandRegistry: CommandRegistry;
|
|
7
|
-
protected readonly schemaStore: JsonSchemaDataStore;
|
|
8
|
-
protected init(): void;
|
|
9
|
-
registerSchemas(store: JsonSchemaRegisterContext): void;
|
|
10
|
-
protected updateSchema(): void;
|
|
11
|
-
}
|
|
12
|
-
export declare const keybindingSchema: {
|
|
13
|
-
readonly $id: "vscode://schemas/keybindings";
|
|
14
|
-
readonly type: "array";
|
|
15
|
-
readonly title: "Keybinding Configuration File";
|
|
16
|
-
readonly default: [];
|
|
17
|
-
readonly definitions: {
|
|
18
|
-
readonly key: {
|
|
19
|
-
readonly type: "string";
|
|
20
|
-
readonly description: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
readonly items: {
|
|
24
|
-
readonly type: "object";
|
|
25
|
-
readonly defaultSnippets: [{
|
|
26
|
-
readonly body: {
|
|
27
|
-
readonly key: "$1";
|
|
28
|
-
readonly command: "$2";
|
|
29
|
-
readonly when: "$3";
|
|
30
|
-
};
|
|
31
|
-
}];
|
|
32
|
-
readonly allOf: [{
|
|
33
|
-
readonly required: ["command"];
|
|
34
|
-
readonly properties: {
|
|
35
|
-
readonly command: {
|
|
36
|
-
readonly anyOf: [{
|
|
37
|
-
readonly type: "string";
|
|
38
|
-
}, {
|
|
39
|
-
readonly enum: string[];
|
|
40
|
-
readonly enumDescriptions: string[];
|
|
41
|
-
}];
|
|
42
|
-
readonly description: string;
|
|
43
|
-
};
|
|
44
|
-
readonly when: {
|
|
45
|
-
readonly type: "string";
|
|
46
|
-
readonly description: string;
|
|
47
|
-
};
|
|
48
|
-
readonly args: {
|
|
49
|
-
readonly description: string;
|
|
50
|
-
};
|
|
51
|
-
readonly context: {
|
|
52
|
-
readonly type: "string";
|
|
53
|
-
readonly description: string;
|
|
54
|
-
readonly deprecationMessage: string;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
}, {
|
|
58
|
-
readonly anyOf: [{
|
|
59
|
-
readonly required: ["key"];
|
|
60
|
-
readonly properties: {
|
|
61
|
-
readonly key: {
|
|
62
|
-
readonly $ref: "#/definitions/key";
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
}, {
|
|
66
|
-
readonly required: ["keybinding"];
|
|
67
|
-
readonly properties: {
|
|
68
|
-
readonly keybinding: {
|
|
69
|
-
readonly $ref: "#/definitions/key";
|
|
70
|
-
};
|
|
71
|
-
};
|
|
72
|
-
}];
|
|
73
|
-
}];
|
|
74
|
-
};
|
|
75
|
-
readonly allowComments: true;
|
|
76
|
-
readonly allowTrailingCommas: true;
|
|
77
|
-
};
|
|
78
|
-
//# sourceMappingURL=keybinding-schema-updater.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keybinding-schema-updater.d.ts","sourceRoot":"","sources":["../../src/browser/keybinding-schema-updater.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAO,eAAe,EAAa,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,MAAM,2CAA2C,CAAC;AAEnI,OAAO,GAAG,MAAM,4BAA4B,CAAC;AAG7C,qBACa,uBAAwB,YAAW,sBAAsB;IAClE,SAAS,CAAC,QAAQ,CAAC,GAAG,MAA+B;IAC5B,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAChD,SAAS,CAAC,QAAQ,CAAC,WAAW,EAAE,mBAAmB,CAAC;IAGjF,SAAS,CAAC,IAAI,IAAI,IAAI;IAKtB,eAAe,CAAC,KAAK,EAAE,yBAAyB,GAAG,IAAI;IAOvD,SAAS,CAAC,YAAY,IAAI,IAAI;CAYjC;AAGD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqCG,CAAC"}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *****************************************************************************
|
|
3
|
-
// Copyright (C) 2022 Ericsson and others.
|
|
4
|
-
//
|
|
5
|
-
// This program and the accompanying materials are made available under the
|
|
6
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
//
|
|
9
|
-
// This Source Code may also be made available under the following Secondary
|
|
10
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
// with the GNU Classpath Exception which is available at
|
|
13
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
//
|
|
15
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
-
// *****************************************************************************
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.keybindingSchema = exports.KeybindingSchemaUpdater = void 0;
|
|
19
|
-
const tslib_1 = require("tslib");
|
|
20
|
-
const common_1 = require("@theia/core/lib/common");
|
|
21
|
-
const json_schema_store_1 = require("@theia/core/lib/browser/json-schema-store");
|
|
22
|
-
const inversify_1 = require("@theia/core/shared/inversify");
|
|
23
|
-
const uri_1 = require("@theia/core/lib/common/uri");
|
|
24
|
-
let KeybindingSchemaUpdater = class KeybindingSchemaUpdater {
|
|
25
|
-
constructor() {
|
|
26
|
-
this.uri = new uri_1.default(keybindingSchemaId);
|
|
27
|
-
}
|
|
28
|
-
init() {
|
|
29
|
-
this.updateSchema();
|
|
30
|
-
this.commandRegistry.onCommandsChanged(() => this.updateSchema());
|
|
31
|
-
}
|
|
32
|
-
registerSchemas(store) {
|
|
33
|
-
store.registerSchema({
|
|
34
|
-
fileMatch: ['keybindings.json', 'keymaps.json'],
|
|
35
|
-
url: this.uri.toString(),
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
updateSchema() {
|
|
39
|
-
var _a;
|
|
40
|
-
const schema = (0, common_1.deepClone)(exports.keybindingSchema);
|
|
41
|
-
const enumValues = schema.items.allOf[0].properties.command.anyOf[1].enum;
|
|
42
|
-
const enumDescriptions = schema.items.allOf[0].properties.command.anyOf[1].enumDescriptions;
|
|
43
|
-
for (const command of this.commandRegistry.getAllCommands()) {
|
|
44
|
-
if (command.handlers.length > 0 && !command.id.startsWith('_')) {
|
|
45
|
-
enumValues.push(command.id);
|
|
46
|
-
enumDescriptions.push((_a = command.label) !== null && _a !== void 0 ? _a : '');
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
this.schemaStore.setSchema(this.uri, schema);
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
exports.KeybindingSchemaUpdater = KeybindingSchemaUpdater;
|
|
53
|
-
tslib_1.__decorate([
|
|
54
|
-
(0, inversify_1.inject)(common_1.CommandRegistry),
|
|
55
|
-
tslib_1.__metadata("design:type", common_1.CommandRegistry)
|
|
56
|
-
], KeybindingSchemaUpdater.prototype, "commandRegistry", void 0);
|
|
57
|
-
tslib_1.__decorate([
|
|
58
|
-
(0, inversify_1.inject)(json_schema_store_1.JsonSchemaDataStore),
|
|
59
|
-
tslib_1.__metadata("design:type", json_schema_store_1.JsonSchemaDataStore)
|
|
60
|
-
], KeybindingSchemaUpdater.prototype, "schemaStore", void 0);
|
|
61
|
-
tslib_1.__decorate([
|
|
62
|
-
(0, inversify_1.postConstruct)(),
|
|
63
|
-
tslib_1.__metadata("design:type", Function),
|
|
64
|
-
tslib_1.__metadata("design:paramtypes", []),
|
|
65
|
-
tslib_1.__metadata("design:returntype", void 0)
|
|
66
|
-
], KeybindingSchemaUpdater.prototype, "init", null);
|
|
67
|
-
exports.KeybindingSchemaUpdater = KeybindingSchemaUpdater = tslib_1.__decorate([
|
|
68
|
-
(0, inversify_1.injectable)()
|
|
69
|
-
], KeybindingSchemaUpdater);
|
|
70
|
-
const keybindingSchemaId = 'vscode://schemas/keybindings';
|
|
71
|
-
exports.keybindingSchema = {
|
|
72
|
-
$id: keybindingSchemaId,
|
|
73
|
-
type: 'array',
|
|
74
|
-
title: 'Keybinding Configuration File',
|
|
75
|
-
default: [],
|
|
76
|
-
definitions: {
|
|
77
|
-
key: { type: 'string', description: common_1.nls.localizeByDefault('Key or key sequence (separated by space)') },
|
|
78
|
-
},
|
|
79
|
-
items: {
|
|
80
|
-
type: 'object',
|
|
81
|
-
defaultSnippets: [{ body: { key: '$1', command: '$2', when: '$3' } }],
|
|
82
|
-
allOf: [
|
|
83
|
-
{
|
|
84
|
-
required: ['command'],
|
|
85
|
-
properties: {
|
|
86
|
-
command: {
|
|
87
|
-
anyOf: [{ type: 'string' }, { enum: [], enumDescriptions: [] }], description: common_1.nls.localizeByDefault('Name of the command to execute')
|
|
88
|
-
},
|
|
89
|
-
when: { type: 'string', description: common_1.nls.localizeByDefault('Condition when the key is active.') },
|
|
90
|
-
args: { description: common_1.nls.localizeByDefault('Arguments to pass to the command to execute.') },
|
|
91
|
-
context: {
|
|
92
|
-
type: 'string',
|
|
93
|
-
description: common_1.nls.localizeByDefault('Condition when the key is active.'),
|
|
94
|
-
deprecationMessage: common_1.nls.localize('theia/keybinding-schema-updater/deprecation', 'Use `when` clause instead.')
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
anyOf: [
|
|
100
|
-
{ required: ['key'], properties: { key: { $ref: '#/definitions/key' }, } },
|
|
101
|
-
{ required: ['keybinding'], properties: { keybinding: { $ref: '#/definitions/key' } } }
|
|
102
|
-
]
|
|
103
|
-
}
|
|
104
|
-
]
|
|
105
|
-
},
|
|
106
|
-
allowComments: true,
|
|
107
|
-
allowTrailingCommas: true,
|
|
108
|
-
};
|
|
109
|
-
//# sourceMappingURL=keybinding-schema-updater.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keybinding-schema-updater.js","sourceRoot":"","sources":["../../src/browser/keybinding-schema-updater.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
|
-
/// <reference types="react" />
|
|
3
|
-
import React = require('@theia/core/shared/react');
|
|
4
|
-
import { Emitter, Event } from '@theia/core/lib/common/event';
|
|
5
|
-
import { CommandRegistry, Command } from '@theia/core/lib/common/command';
|
|
6
|
-
import { Keybinding } from '@theia/core/lib/common/keybinding';
|
|
7
|
-
import { ReactWidget } from '@theia/core/lib/browser/widgets/react-widget';
|
|
8
|
-
import { KeybindingRegistry, Message, ScopedKeybinding, StatefulWidget, Widget, ContextMenuRenderer } from '@theia/core/lib/browser';
|
|
9
|
-
import { KeymapsService } from './keymaps-service';
|
|
10
|
-
import { DisposableCollection } from '@theia/core';
|
|
11
|
-
/**
|
|
12
|
-
* Representation of a keybinding item for the view.
|
|
13
|
-
*/
|
|
14
|
-
export interface KeybindingItem {
|
|
15
|
-
command: Command;
|
|
16
|
-
keybinding?: ScopedKeybinding;
|
|
17
|
-
/** human-readable labels can contain highlighting */
|
|
18
|
-
labels: {
|
|
19
|
-
id: RenderableLabel;
|
|
20
|
-
command: RenderableLabel;
|
|
21
|
-
keybinding: RenderableLabel;
|
|
22
|
-
context: RenderableLabel;
|
|
23
|
-
source: RenderableLabel;
|
|
24
|
-
};
|
|
25
|
-
visible?: boolean;
|
|
26
|
-
}
|
|
27
|
-
export declare namespace KeybindingItem {
|
|
28
|
-
function is(arg: unknown): arg is KeybindingItem;
|
|
29
|
-
function keybinding(item: KeybindingItem): Keybinding;
|
|
30
|
-
}
|
|
31
|
-
export interface RenderableLabel {
|
|
32
|
-
readonly value: string;
|
|
33
|
-
segments?: RenderableStringSegment[];
|
|
34
|
-
}
|
|
35
|
-
export interface RenderableStringSegment {
|
|
36
|
-
value: string;
|
|
37
|
-
match: boolean;
|
|
38
|
-
key?: boolean;
|
|
39
|
-
}
|
|
40
|
-
/**
|
|
41
|
-
* Representation of an individual table cell.
|
|
42
|
-
*/
|
|
43
|
-
export interface CellData {
|
|
44
|
-
/**
|
|
45
|
-
* The cell value.
|
|
46
|
-
*/
|
|
47
|
-
value: string;
|
|
48
|
-
/**
|
|
49
|
-
* Indicates if a cell's value is currently highlighted.
|
|
50
|
-
*/
|
|
51
|
-
highlighted: boolean;
|
|
52
|
-
}
|
|
53
|
-
export declare class KeybindingWidget extends ReactWidget implements StatefulWidget {
|
|
54
|
-
protected readonly commandRegistry: CommandRegistry;
|
|
55
|
-
protected readonly keybindingRegistry: KeybindingRegistry;
|
|
56
|
-
protected readonly keymapsService: KeymapsService;
|
|
57
|
-
protected readonly contextMenuRenderer: ContextMenuRenderer;
|
|
58
|
-
static readonly ID = "keybindings.view.widget";
|
|
59
|
-
static readonly LABEL: string;
|
|
60
|
-
static readonly CONTEXT_MENU: string[];
|
|
61
|
-
static readonly COPY_MENU: string[];
|
|
62
|
-
static readonly EDIT_MENU: string[];
|
|
63
|
-
static readonly ADD_MENU: string[];
|
|
64
|
-
static readonly REMOVE_MENU: string[];
|
|
65
|
-
static readonly SHOW_MENU: string[];
|
|
66
|
-
/**
|
|
67
|
-
* The list of all available keybindings.
|
|
68
|
-
*/
|
|
69
|
-
protected items: KeybindingItem[];
|
|
70
|
-
/**
|
|
71
|
-
* The current user search query.
|
|
72
|
-
*/
|
|
73
|
-
protected query: string;
|
|
74
|
-
/**
|
|
75
|
-
* The regular expression used to extract values between fuzzy results.
|
|
76
|
-
*/
|
|
77
|
-
protected readonly regexp: RegExp;
|
|
78
|
-
/**
|
|
79
|
-
* The regular expression used to extract values between the keybinding separator.
|
|
80
|
-
*/
|
|
81
|
-
protected readonly keybindingSeparator: RegExp;
|
|
82
|
-
/**
|
|
83
|
-
* The fuzzy search options.
|
|
84
|
-
* The `pre` and `post` options are used to wrap fuzzy matches.
|
|
85
|
-
*/
|
|
86
|
-
protected readonly fuzzyOptions: {
|
|
87
|
-
pre: string;
|
|
88
|
-
post: string;
|
|
89
|
-
};
|
|
90
|
-
protected readonly onDidUpdateEmitter: Emitter<void>;
|
|
91
|
-
readonly onDidUpdate: Event<void>;
|
|
92
|
-
protected readonly onRenderCallbacks: DisposableCollection;
|
|
93
|
-
protected onRender: () => void;
|
|
94
|
-
/**
|
|
95
|
-
* Search keybindings.
|
|
96
|
-
*/
|
|
97
|
-
protected readonly searchKeybindings: () => void;
|
|
98
|
-
constructor(options?: Widget.IOptions);
|
|
99
|
-
/**
|
|
100
|
-
* Initialize the widget.
|
|
101
|
-
*/
|
|
102
|
-
protected init(): void;
|
|
103
|
-
protected updateItemsAndRerender: import("lodash").DebouncedFunc<() => void>;
|
|
104
|
-
/**
|
|
105
|
-
* Determine if there currently is a search term.
|
|
106
|
-
* @returns `true` if a search term is present.
|
|
107
|
-
*/
|
|
108
|
-
hasSearch(): boolean;
|
|
109
|
-
/**
|
|
110
|
-
* Clear the search and reset the view.
|
|
111
|
-
*/
|
|
112
|
-
clearSearch(): void;
|
|
113
|
-
/**
|
|
114
|
-
* Show keybinding items with the same key sequence as the given item.
|
|
115
|
-
* @param item the keybinding item
|
|
116
|
-
*/
|
|
117
|
-
showSameKeybindings(item: KeybindingItem): void;
|
|
118
|
-
protected onActivateRequest(msg: Message): void;
|
|
119
|
-
/**
|
|
120
|
-
* Perform a search based on the user's search query.
|
|
121
|
-
*/
|
|
122
|
-
protected doSearchKeybindings(): void;
|
|
123
|
-
protected formatAndMatchCommand(item: KeybindingItem): boolean;
|
|
124
|
-
protected formatAndMatchKeybinding(item: KeybindingItem, queryItems: string[], exactMatch?: boolean): boolean;
|
|
125
|
-
protected formatAndMatchContext(item: KeybindingItem): boolean;
|
|
126
|
-
protected formatAndMatchSource(item: KeybindingItem): boolean;
|
|
127
|
-
protected toRenderableLabel(label: string, query?: string): RenderableLabel;
|
|
128
|
-
/**
|
|
129
|
-
* Get the search input if available.
|
|
130
|
-
* @returns the search input if available.
|
|
131
|
-
*/
|
|
132
|
-
protected findSearchField(): HTMLInputElement | null;
|
|
133
|
-
/**
|
|
134
|
-
* Set the focus the search input field if available.
|
|
135
|
-
*/
|
|
136
|
-
protected focusInputField(): void;
|
|
137
|
-
/**
|
|
138
|
-
* Render the view.
|
|
139
|
-
*/
|
|
140
|
-
protected render(): React.ReactNode;
|
|
141
|
-
/**
|
|
142
|
-
* Render the search container with the search input.
|
|
143
|
-
*/
|
|
144
|
-
protected renderSearch(): React.ReactNode;
|
|
145
|
-
/**
|
|
146
|
-
* Render the warning message when no search results are found.
|
|
147
|
-
*/
|
|
148
|
-
protected renderMessage(): React.ReactNode;
|
|
149
|
-
/**
|
|
150
|
-
* Render the keybindings table.
|
|
151
|
-
*/
|
|
152
|
-
protected renderTable(): React.ReactNode;
|
|
153
|
-
/**
|
|
154
|
-
* Render the table rows.
|
|
155
|
-
*/
|
|
156
|
-
protected renderRows(): React.ReactNode;
|
|
157
|
-
protected renderRow(item: KeybindingItem, index: number): React.ReactNode;
|
|
158
|
-
protected handleItemClick(item: KeybindingItem, index: number, event: React.MouseEvent<HTMLElement>): void;
|
|
159
|
-
protected handleItemDoubleClick(item: KeybindingItem, index: number, event: React.MouseEvent<HTMLElement>): void;
|
|
160
|
-
protected handleItemContextMenu(item: KeybindingItem, index: number, event: React.MouseEvent<HTMLElement>): void;
|
|
161
|
-
protected selectItem(item: KeybindingItem, index: number, element: HTMLElement): void;
|
|
162
|
-
/**
|
|
163
|
-
* Render the actions container with action icons.
|
|
164
|
-
* @param item the keybinding item for the row.
|
|
165
|
-
*/
|
|
166
|
-
protected renderActions(item: KeybindingItem): React.ReactNode;
|
|
167
|
-
/**
|
|
168
|
-
* Render the edit action used to update a keybinding.
|
|
169
|
-
* @param item the keybinding item for the row.
|
|
170
|
-
*/
|
|
171
|
-
protected renderEdit(item: KeybindingItem): React.ReactNode;
|
|
172
|
-
/**
|
|
173
|
-
* Render the reset action to reset the custom keybinding.
|
|
174
|
-
* Only visible if a keybinding has a `user` scope.
|
|
175
|
-
* @param item the keybinding item for the row.
|
|
176
|
-
*/
|
|
177
|
-
protected renderReset(item: KeybindingItem): React.ReactNode;
|
|
178
|
-
/**
|
|
179
|
-
* Render the keybinding.
|
|
180
|
-
* @param keybinding the keybinding value.
|
|
181
|
-
*/
|
|
182
|
-
protected renderKeybinding(keybinding: KeybindingItem): React.ReactNode;
|
|
183
|
-
/**
|
|
184
|
-
* Get the list of keybinding items.
|
|
185
|
-
*
|
|
186
|
-
* @returns the list of keybinding items.
|
|
187
|
-
*/
|
|
188
|
-
protected getItems(): KeybindingItem[];
|
|
189
|
-
protected createKeybindingItem(command: Command, keybinding?: ScopedKeybinding): KeybindingItem;
|
|
190
|
-
/**
|
|
191
|
-
* @returns the input array, sorted.
|
|
192
|
-
* The sort priority is as follows: items with keybindings before those without, then alphabetical by command.
|
|
193
|
-
*/
|
|
194
|
-
protected sortKeybindings(bindings: KeybindingItem[]): KeybindingItem[];
|
|
195
|
-
/**
|
|
196
|
-
* Get the human-readable label for a given command.
|
|
197
|
-
* @param command the command.
|
|
198
|
-
*
|
|
199
|
-
* @returns a human-readable label for the given command.
|
|
200
|
-
*/
|
|
201
|
-
protected getCommandLabel(command: Command): string;
|
|
202
|
-
protected getKeybindingLabel(keybinding: ScopedKeybinding | undefined): string | undefined;
|
|
203
|
-
protected getContextLabel(keybinding: ScopedKeybinding | undefined): string | undefined;
|
|
204
|
-
protected getScopeLabel(keybinding: ScopedKeybinding | undefined): string | undefined;
|
|
205
|
-
/**
|
|
206
|
-
* Compare two commands.
|
|
207
|
-
* - Commands with a label should be prioritized and alphabetically sorted.
|
|
208
|
-
* - Commands without a label (id) should be placed at the bottom.
|
|
209
|
-
* @param a the first command.
|
|
210
|
-
* @param b the second command.
|
|
211
|
-
*
|
|
212
|
-
* @returns an integer indicating whether `a` comes before, after or is equivalent to `b`.
|
|
213
|
-
* - returns `-1` if `a` occurs before `b`.
|
|
214
|
-
* - returns `1` if `a` occurs after `b`.
|
|
215
|
-
* - returns `0` if they are equivalent.
|
|
216
|
-
*/
|
|
217
|
-
protected compareItem(a: Command, b: Command): number;
|
|
218
|
-
/**
|
|
219
|
-
* Prompt users to update the keybinding for the given command.
|
|
220
|
-
* @param item the keybinding item.
|
|
221
|
-
*/
|
|
222
|
-
editKeybinding(item: KeybindingItem): void;
|
|
223
|
-
/**
|
|
224
|
-
* Prompt users to update when expression for the given keybinding.
|
|
225
|
-
* @param item the keybinding item
|
|
226
|
-
*/
|
|
227
|
-
editWhenExpression(item: KeybindingItem): void;
|
|
228
|
-
/**
|
|
229
|
-
* Prompt users to add a keybinding for the given command.
|
|
230
|
-
* @param item the keybinding item
|
|
231
|
-
*/
|
|
232
|
-
addKeybinding(item: KeybindingItem): void;
|
|
233
|
-
/**
|
|
234
|
-
* Prompt users for confirmation before resetting.
|
|
235
|
-
* @param command the command label.
|
|
236
|
-
*
|
|
237
|
-
* @returns a Promise which resolves to `true` if a user accepts resetting.
|
|
238
|
-
*/
|
|
239
|
-
protected confirmResetKeybinding(item: KeybindingItem): Promise<boolean>;
|
|
240
|
-
/**
|
|
241
|
-
* Reset the keybinding to its default value.
|
|
242
|
-
* @param item the keybinding item.
|
|
243
|
-
*/
|
|
244
|
-
resetKeybinding(item: KeybindingItem): Promise<void>;
|
|
245
|
-
/**
|
|
246
|
-
* Whether the keybinding can be reset to its default value.
|
|
247
|
-
* @param item the keybinding item
|
|
248
|
-
*/
|
|
249
|
-
canResetKeybinding(item: KeybindingItem): boolean;
|
|
250
|
-
/**
|
|
251
|
-
* Validate the provided keybinding value against its previous value.
|
|
252
|
-
* @param command the command label.
|
|
253
|
-
* @param oldKeybinding the old keybinding value.
|
|
254
|
-
* @param keybinding the new keybinding value.
|
|
255
|
-
*
|
|
256
|
-
* @returns the end user message to display.
|
|
257
|
-
*/
|
|
258
|
-
protected validateKeybinding(command: string, oldKeybinding: string | undefined, keybinding: string): string;
|
|
259
|
-
/**
|
|
260
|
-
* Build the cell data with highlights if applicable.
|
|
261
|
-
* @param raw the raw cell value.
|
|
262
|
-
*
|
|
263
|
-
* @returns the list of cell data.
|
|
264
|
-
*/
|
|
265
|
-
protected buildCellData(raw: string): CellData[];
|
|
266
|
-
/**
|
|
267
|
-
* Render the fuzzy representation of a matched result.
|
|
268
|
-
* @param property one of the `KeybindingItem` properties.
|
|
269
|
-
*/
|
|
270
|
-
protected renderMatchedData(property: RenderableLabel): React.ReactNode;
|
|
271
|
-
storeState(): object | undefined;
|
|
272
|
-
restoreState(oldState: {
|
|
273
|
-
query: string;
|
|
274
|
-
}): void;
|
|
275
|
-
}
|
|
276
|
-
//# sourceMappingURL=keybindings-widget.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keybindings-widget.d.ts","sourceRoot":"","sources":["../../src/browser/keybindings-widget.tsx"],"names":[],"mappings":"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"}
|