The linked editing range provider interface defines the contract between extensions and the linked editing feature.
The linked editing range provider interface defines the contract between extensions and the linked editing feature.
(provide-linked-editing-ranges linked-editing-range-provider
document
position
token)
For a given position in a document, returns the range of the symbol at the position and all ranges that have the same content. A change to one of the ranges can be applied to all other ranges if the new content is valid. An optional word pattern can be returned with the result to describe valid contents. If no result-specific word pattern is provided, the word pattern from the language configuration is used.
Parameters:
document
: TextDocument
- The document in which the provider was invoked.position
: Position
- The position at which the provider was invoked.token
: CancellationToken
- A cancellation token.Returns: ProviderResult<LinkedEditingRanges>
- A list of ranges that can be edited together
For a given position in a document, returns the range of the symbol at the position and all ranges that have the same content. A change to one of the ranges can be applied to all other ranges if the new content is valid. An optional word pattern can be returned with the result to describe valid contents. If no result-specific word pattern is provided, the word pattern from the language configuration is used. **Parameters:** - `document`: `TextDocument` - The document in which the provider was invoked. - `position`: `Position` - The position at which the provider was invoked. - `token`: `CancellationToken` - A cancellation token. **Returns:** `ProviderResult<LinkedEditingRanges>` - A list of ranges that can be edited together
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close