vscode-languageserver-protocol 3.17.4-next.0 → 3.17.4-next.1
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
|
@@ -162,7 +162,7 @@ export declare namespace DocumentSelector {
|
|
|
162
162
|
function is(value: any[] | undefined | null): value is DocumentSelector;
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
165
|
-
* General parameters to
|
|
165
|
+
* General parameters to register for a notification or to register a provider.
|
|
166
166
|
*/
|
|
167
167
|
export interface Registration {
|
|
168
168
|
/**
|
|
@@ -2824,7 +2824,7 @@ export interface DocumentFormattingOptions extends WorkDoneProgressOptions {
|
|
|
2824
2824
|
export interface DocumentFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentFormattingOptions {
|
|
2825
2825
|
}
|
|
2826
2826
|
/**
|
|
2827
|
-
* A request to
|
|
2827
|
+
* A request to format a whole document.
|
|
2828
2828
|
*/
|
|
2829
2829
|
export declare namespace DocumentFormattingRequest {
|
|
2830
2830
|
const method: 'textDocument/formatting';
|
|
@@ -2868,7 +2868,7 @@ export interface DocumentRangeFormattingOptions extends WorkDoneProgressOptions
|
|
|
2868
2868
|
export interface DocumentRangeFormattingRegistrationOptions extends TextDocumentRegistrationOptions, DocumentRangeFormattingOptions {
|
|
2869
2869
|
}
|
|
2870
2870
|
/**
|
|
2871
|
-
* A request to
|
|
2871
|
+
* A request to format a range in a document.
|
|
2872
2872
|
*/
|
|
2873
2873
|
export declare namespace DocumentRangeFormattingRequest {
|
|
2874
2874
|
const method: 'textDocument/rangeFormatting';
|
package/lib/common/protocol.js
CHANGED
|
@@ -847,7 +847,7 @@ var DocumentLinkResolveRequest;
|
|
|
847
847
|
DocumentLinkResolveRequest.type = new messages_1.ProtocolRequestType(DocumentLinkResolveRequest.method);
|
|
848
848
|
})(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {}));
|
|
849
849
|
/**
|
|
850
|
-
* A request to
|
|
850
|
+
* A request to format a whole document.
|
|
851
851
|
*/
|
|
852
852
|
var DocumentFormattingRequest;
|
|
853
853
|
(function (DocumentFormattingRequest) {
|
|
@@ -856,7 +856,7 @@ var DocumentFormattingRequest;
|
|
|
856
856
|
DocumentFormattingRequest.type = new messages_1.ProtocolRequestType(DocumentFormattingRequest.method);
|
|
857
857
|
})(DocumentFormattingRequest = exports.DocumentFormattingRequest || (exports.DocumentFormattingRequest = {}));
|
|
858
858
|
/**
|
|
859
|
-
* A request to
|
|
859
|
+
* A request to format a range in a document.
|
|
860
860
|
*/
|
|
861
861
|
var DocumentRangeFormattingRequest;
|
|
862
862
|
(function (DocumentRangeFormattingRequest) {
|
package/package.json
CHANGED