-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinked_editing_range.go
35 lines (30 loc) · 1.19 KB
/
linked_editing_range.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package lsp
// LinkedEditingRangeOptions specifies the options for settin up linked editing
// range support for a language server.
type LinkedEditingRangeOptions struct {
WorkDoneProgressOptions
}
// LinkedEditingRangeRegistrationOptions describes options to be used when
// registering for linked editing range capabilities.
type LinkedEditingRangeRegistrationOptions struct {
TextDocumentRegistrationOptions
LinkedEditingRangeOptions
StaticRegistrationOptions
}
// LinkedEditingRangeParams contains the data the client sends through a
// `textDocument/linkedEditingRange` request.
type LinkedEditingRangeParams struct {
TextDocumentPositionParams
WorkDoneProgressParams
}
// LinkedEditingRanges represents a set of linked editing ranges.
type LinkedEditingRanges struct {
// A list of ranges that can be renamed together. The ranges must have
// identical length and contain identical text content. The ranges cannot
// overlap.
Ranges []*Range `json:"ranges"`
// An optional word pattern (regular expression) that describes valid contents
// for the given ranges. If no pattern is provided, the client configuration's
// word pattern will be used.
WordPattern string `json:"wordPattern,omitempty"`
}