@theia/plugin 1.62.0-next.3 → 1.63.0-next.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.
- package/package.json +3 -3
- package/src/theia.d.ts +16 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.63.0-next.0+c02e6a4f5",
|
|
4
4
|
"description": "Theia - Plugin API",
|
|
5
5
|
"types": "./src/theia.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"watch": "theiaext watch"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@theia/ext-scripts": "1.
|
|
30
|
+
"@theia/ext-scripts": "1.62.0"
|
|
31
31
|
},
|
|
32
32
|
"nyc": {
|
|
33
33
|
"extends": "../../configs/nyc.json"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "c02e6a4f58728b4067cbd267d598550192abb249"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -3146,6 +3146,21 @@ export module '@theia/plugin' {
|
|
|
3146
3146
|
* https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
|
|
3147
3147
|
*/
|
|
3148
3148
|
readonly isInteractedWith: boolean;
|
|
3149
|
+
|
|
3150
|
+
/**
|
|
3151
|
+
* The detected shell type of the {@link Terminal}. This will be `undefined` when there is
|
|
3152
|
+
* not a clear signal as to what the shell is, or the shell is not supported yet. This
|
|
3153
|
+
* value should change to the shell type of a sub-shell when launched (for example, running
|
|
3154
|
+
* `bash` inside `zsh`).
|
|
3155
|
+
*
|
|
3156
|
+
* Note that current implementation only assess the shell type on terminal creation, and it is
|
|
3157
|
+
* not updated if a sub-shell is currnetly launched.
|
|
3158
|
+
*
|
|
3159
|
+
* Note that the possible values are currently defined as any of the following:
|
|
3160
|
+
* 'bash', 'cmd', 'csh', 'fish', 'gitbash', 'julia', 'ksh', 'node', 'nu', 'pwsh', 'python',
|
|
3161
|
+
* 'sh', 'wsl', 'zsh'.
|
|
3162
|
+
*/
|
|
3163
|
+
readonly shell: string | undefined;
|
|
3149
3164
|
}
|
|
3150
3165
|
|
|
3151
3166
|
/**
|
|
@@ -13871,7 +13886,7 @@ export module '@theia/plugin' {
|
|
|
13871
13886
|
/**
|
|
13872
13887
|
* Whether the thread supports reply. Defaults to true.
|
|
13873
13888
|
*/
|
|
13874
|
-
canReply: boolean;
|
|
13889
|
+
canReply: boolean | CommentAuthorInformation;
|
|
13875
13890
|
}
|
|
13876
13891
|
|
|
13877
13892
|
/**
|