@theia/plugin 1.27.0-next.15 → 1.27.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/theia.d.ts +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.27.0-next.15+bbac7e3787d",
3
+ "version": "1.27.0-next.22+b2e44a9367b",
4
4
  "description": "Theia - Plugin API",
5
5
  "types": "./src/theia.d.ts",
6
6
  "publishConfig": {
@@ -32,5 +32,5 @@
32
32
  "nyc": {
33
33
  "extends": "../../configs/nyc.json"
34
34
  },
35
- "gitHead": "bbac7e3787df6e8ef83121f35e495c774d338b41"
35
+ "gitHead": "b2e44a9367b1d9c9b1a0977edf57deab3cc50759"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -6535,7 +6535,7 @@ export module '@theia/plugin' {
6535
6535
  * the port forwarding tunnel is managed by VS Code and the tunnel can be closed by the user.
6536
6536
  *
6537
6537
  * Extensions should not cache the result of `asExternalUri` as the resolved uri may become invalid due to
6538
- * a system or user action — for example, in remote cases, a user may close a port forwarding tunnel
6538
+ * a system or user action — for example, in remote cases, a user may close a port forwarding tunnel
6539
6539
  * that was opened by `asExternalUri`.
6540
6540
  *
6541
6541
  * *Note* that uris passed through `openExternal` are automatically resolved and you should not call `asExternalUri`
@@ -6709,6 +6709,10 @@ export module '@theia/plugin' {
6709
6709
  * This rule will only execute if the text after the cursor matches this regular expression.
6710
6710
  */
6711
6711
  afterText?: RegExp;
6712
+ /**
6713
+ * This rule will only execute if the text above the current line matches this regular expression.
6714
+ */
6715
+ previousLineText?: RegExp;
6712
6716
  /**
6713
6717
  * The action to execute.
6714
6718
  */