@theia/plugin 1.18.0-next.83ecbc39 → 1.18.0-next.86181832
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 +2 -2
- package/src/theia.d.ts +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.18.0-next.
|
|
3
|
+
"version": "1.18.0-next.86181832",
|
|
4
4
|
"description": "Theia - Plugin API",
|
|
5
5
|
"types": "./src/theia.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "theiaext test"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@theia/ext-scripts": "1.18.0-next.
|
|
29
|
+
"@theia/ext-scripts": "1.18.0-next.86181832"
|
|
30
30
|
},
|
|
31
31
|
"nyc": {
|
|
32
32
|
"extends": "../../configs/nyc.json"
|
package/src/theia.d.ts
CHANGED
|
@@ -6154,7 +6154,7 @@ declare module '@theia/plugin' {
|
|
|
6154
6154
|
*
|
|
6155
6155
|
* @sample `let sel:DocumentSelector = { scheme: 'file', language: 'typescript' }`;
|
|
6156
6156
|
*/
|
|
6157
|
-
export type DocumentSelector = DocumentFilter | string |
|
|
6157
|
+
export type DocumentSelector = DocumentFilter | string | ReadonlyArray<DocumentFilter | string>;
|
|
6158
6158
|
|
|
6159
6159
|
/**
|
|
6160
6160
|
* A tuple of two characters, like a pair of
|
|
@@ -6265,6 +6265,14 @@ declare module '@theia/plugin' {
|
|
|
6265
6265
|
* and various editor features, like automatic bracket insertion, automatic indentation etc.
|
|
6266
6266
|
*/
|
|
6267
6267
|
export interface LanguageConfiguration {
|
|
6268
|
+
/**
|
|
6269
|
+
* @deprecated Use the autoClosingPairs property in the language configuration file instead.
|
|
6270
|
+
*/
|
|
6271
|
+
__characterPairSupport?: { autoClosingPairs: { close: String, notIn: String[], open: String }[] }
|
|
6272
|
+
/**
|
|
6273
|
+
* @deprecated Do not use. Will be replaced by a better API soon.
|
|
6274
|
+
*/
|
|
6275
|
+
__electricCharacterSupport?: { brackets: any, docComment: { close: String, lineStart: String, open: String, scope: String } }
|
|
6268
6276
|
/**
|
|
6269
6277
|
* The language's comment settings.
|
|
6270
6278
|
*/
|