File tree Expand file tree Collapse file tree 4 files changed +43
-2
lines changed
kotlin-vscode/src/webMain/generated/vscode Expand file tree Collapse file tree 4 files changed +43
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ typescript.npm.version=^6.0.1-rc
190190vercel-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
196196yaml.npm.version =^2.8.2
Original file line number Diff line number Diff line change 33package vscode
44
55import 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 */`
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments