vscode-languageserver-protocol 3.17.3-next.4 → 3.17.3-next.6
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/lib/common/protocol.d.ts
CHANGED
|
@@ -594,7 +594,7 @@ export interface MarkdownClientCapabilities {
|
|
|
594
594
|
*/
|
|
595
595
|
export declare namespace PositionEncodingKind {
|
|
596
596
|
/**
|
|
597
|
-
* Character offsets count UTF-8 code units.
|
|
597
|
+
* Character offsets count UTF-8 code units (e.g. bytes).
|
|
598
598
|
*/
|
|
599
599
|
const UTF8: PositionEncodingKind;
|
|
600
600
|
/**
|
|
@@ -607,7 +607,7 @@ export declare namespace PositionEncodingKind {
|
|
|
607
607
|
/**
|
|
608
608
|
* Character offsets count UTF-32 code units.
|
|
609
609
|
*
|
|
610
|
-
* Implementation note: these are the same as Unicode
|
|
610
|
+
* Implementation note: these are the same as Unicode codepoints,
|
|
611
611
|
* so this `PositionEncodingKind` may also be used for an
|
|
612
612
|
* encoding-agnostic representation of character offsets.
|
|
613
613
|
*/
|
package/lib/common/protocol.js
CHANGED
|
@@ -219,7 +219,7 @@ var FailureHandlingKind;
|
|
|
219
219
|
var PositionEncodingKind;
|
|
220
220
|
(function (PositionEncodingKind) {
|
|
221
221
|
/**
|
|
222
|
-
* Character offsets count UTF-8 code units.
|
|
222
|
+
* Character offsets count UTF-8 code units (e.g. bytes).
|
|
223
223
|
*/
|
|
224
224
|
PositionEncodingKind.UTF8 = 'utf-8';
|
|
225
225
|
/**
|
|
@@ -232,7 +232,7 @@ var PositionEncodingKind;
|
|
|
232
232
|
/**
|
|
233
233
|
* Character offsets count UTF-32 code units.
|
|
234
234
|
*
|
|
235
|
-
* Implementation note: these are the same as Unicode
|
|
235
|
+
* Implementation note: these are the same as Unicode codepoints,
|
|
236
236
|
* so this `PositionEncodingKind` may also be used for an
|
|
237
237
|
* encoding-agnostic representation of character offsets.
|
|
238
238
|
*/
|
|
@@ -14,18 +14,18 @@ export interface ShowDocumentClientCapabilities {
|
|
|
14
14
|
support: boolean;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* Params to show a
|
|
17
|
+
* Params to show a resource in the UI.
|
|
18
18
|
*
|
|
19
19
|
* @since 3.16.0
|
|
20
20
|
*/
|
|
21
21
|
export interface ShowDocumentParams {
|
|
22
22
|
/**
|
|
23
|
-
* The
|
|
23
|
+
* The uri to show.
|
|
24
24
|
*/
|
|
25
25
|
uri: URI;
|
|
26
26
|
/**
|
|
27
27
|
* Indicates to show the resource in an external program.
|
|
28
|
-
* To show for example `https://code.visualstudio.com/`
|
|
28
|
+
* To show, for example, `https://code.visualstudio.com/`
|
|
29
29
|
* in the default WEB browser set `external` to `true`.
|
|
30
30
|
*/
|
|
31
31
|
external?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vscode-languageserver-protocol",
|
|
3
3
|
"description": "VSCode Language Server Protocol implementation",
|
|
4
|
-
"version": "3.17.3-next.
|
|
4
|
+
"version": "3.17.3-next.6",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"typings": "./lib/common/api.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"vscode-jsonrpc": "8.1.0-next.
|
|
22
|
-
"vscode-languageserver-types": "3.17.3-next.
|
|
21
|
+
"vscode-jsonrpc": "8.1.0-next.7",
|
|
22
|
+
"vscode-languageserver-types": "3.17.3-next.3"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
|