@theia/keymaps 1.56.0 → 1.57.0-next.22
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 +6 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Example of a valid `keymaps.json` file
|
|
|
25
25
|
}
|
|
26
26
|
]
|
|
27
27
|
```
|
|
28
|
+
|
|
28
29
|
where `command` is a unique command id and keybinding is a valid `keybinding`. There's also an optional `context` property that can be specified (which is also a unique string for a context id).
|
|
29
30
|
|
|
30
31
|
## Supported Keys
|
|
@@ -42,8 +43,9 @@ If unsure you can always look at the framework's [supported keys](https://eclips
|
|
|
42
43
|
## Key Sequences
|
|
43
44
|
|
|
44
45
|
Key sequences like: `ctrl+x ctrl+a` or `ctrl+a b c` are supported. With the following limitations:
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
|
|
47
|
+
- If the key sequence exceeds 1 key chord it won't show in the electron menu.
|
|
48
|
+
- If the key sequence exceeds 2 key chords it won't show in the command palette.
|
|
47
49
|
|
|
48
50
|
## Additional Information
|
|
49
51
|
|
|
@@ -57,5 +59,6 @@ Key sequences like: `ctrl+x ctrl+a` or `ctrl+a b c` are supported. With the fol
|
|
|
57
59
|
- [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
58
60
|
|
|
59
61
|
## Trademark
|
|
62
|
+
|
|
60
63
|
"Theia" is a trademark of the Eclipse Foundation
|
|
61
|
-
https://www.eclipse.org/theia
|
|
64
|
+
<https://www.eclipse.org/theia>
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/keymaps",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0-next.22+35d458a96",
|
|
4
4
|
"description": "Theia - Custom Keymaps Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.
|
|
7
|
-
"@theia/monaco": "1.
|
|
6
|
+
"@theia/core": "1.57.0-next.22+35d458a96",
|
|
7
|
+
"@theia/monaco": "1.57.0-next.22+35d458a96",
|
|
8
8
|
"@theia/monaco-editor-core": "1.83.101",
|
|
9
|
-
"@theia/preferences": "1.
|
|
10
|
-
"@theia/userstorage": "1.
|
|
9
|
+
"@theia/preferences": "1.57.0-next.22+35d458a96",
|
|
10
|
+
"@theia/userstorage": "1.57.0-next.22+35d458a96",
|
|
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": "35d458a961212de264d9579305d984147fa55618"
|
|
53
53
|
}
|