Provide an edit that describes changes that have to be made to one or many resources to rename a symbol to a different name.
The document in which the command was invoked.
The position at which the command was invoked.
The new name of the symbol. If the given name is not valid, the provider must return a rejected promise.
A cancellation token.
A workspace edit or a thenable that resolves to such. The lack of a result can be
signaled by returning undefined
or null
.
Optional function for resolving and validating a position before running rename. The result can be a range or a range and a placeholder text. The placeholder text should be the identifier of the symbol which is being renamed - when omitted the text in the returned range is used.
*Note: * This function should throw an error or return a rejected thenable when the provided location doesn't allow for a rename.
The document in which rename will be invoked.
The position at which rename will be invoked.
A cancellation token.
The range or range and placeholder text of the identifier that is to be renamed. The lack of a result can signaled by returning undefined
or null
.
友链:VS Code 中文文档 | VS Code 官网文档 | VS Code 扩展市场
The rename provider interface defines the contract between extensions and the rename-feature.