Skip to content

Commit e44a6d2

Browse files
committed
VS Code 1.110.0 [generated]
1 parent 7e15c1a commit e44a6d2

File tree

4 files changed

+43
-2
lines changed

4 files changed

+43
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ typescript.npm.version=^6.0.1-rc
190190
vercel-ncc.npm.version=^0.38.4
191191

192192
# https://www.npmjs.com/package/@types/vscode
193-
vscode.npm.version=^1.109.0
193+
vscode.npm.version=^1.110.0
194194

195195
# https://www.npmjs.com/package/yaml
196196
yaml.npm.version=^2.8.2

kotlin-vscode/src/webMain/generated/vscode/CommentRule.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
package vscode
44

55
import kotlinx.js.JsPlainObject
6+
import kotlin.js.JsAny
67

78
/**
89
* Describes how comments for a language work.
@@ -16,7 +17,7 @@ external interface CommentRule {
1617
*
1718
* [Online Documentation](https://code.visualstudio.com/api/references/vscode-api#CommentRule.lineComment)
1819
*/
19-
var lineComment: String?
20+
var lineComment: JsAny /* string | LineCommentRule */?
2021

2122
/**
2223
* The block comment character pair, like `/​* block comment */`
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Automatically generated - do not modify!
2+
3+
package vscode
4+
5+
import kotlinx.js.JsPlainObject
6+
7+
/**
8+
* Configuration for line comments.
9+
*
10+
* [Online Documentation](https://code.visualstudio.com/api/references/vscode-api#LineCommentRule)
11+
*/
12+
@JsPlainObject
13+
external interface LineCommentRule {
14+
/**
15+
* The line comment token, like `//`
16+
*
17+
* [Online Documentation](https://code.visualstudio.com/api/references/vscode-api#LineCommentRule.comment)
18+
*/
19+
var comment: String
20+
21+
/**
22+
* Whether the comment token should not be indented and placed at the first column.
23+
* Defaults to false.
24+
*
25+
* [Online Documentation](https://code.visualstudio.com/api/references/vscode-api#LineCommentRule.noIndent)
26+
*/
27+
var noIndent: Boolean?
28+
}

kotlin-vscode/src/webMain/generated/vscode/env.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,18 @@ external object env {
8484
*/
8585
val isNewAppInstall: Boolean
8686

87+
/**
88+
* Indicates whether the application is running in portable mode.
89+
*
90+
* Portable mode is enabled when the application is run from a folder that contains
91+
* a `data` directory, allowing for self-contained installations.
92+
*
93+
* Learn more about [Portable Mode](https://code.visualstudio.com/docs/editor/portable).
94+
*
95+
* [Online Documentation](https://code.visualstudio.com/api/references/vscode-api#env.isAppPortable)
96+
*/
97+
val isAppPortable: Boolean
98+
8799
/**
88100
* Indicates whether the users has telemetry enabled.
89101
* Can be observed to determine if the extension should send telemetry.

0 commit comments

Comments
 (0)