jsdoc, clarify CompletionItem.textEdit

This commit is contained in:
Johannes Rieken 2015-11-18 14:13:11 +01:00
parent e6d6c1000e
commit 36258db83a

3
src/vs/vscode.d.ts vendored
View file

@ -1906,6 +1906,9 @@ declare namespace vscode {
* An [edit](#TextEdit) which is applied to a document when selecting
* this completion. When an edit is provided the value of
* [insertText](#CompletionItem.insertText) is ignored.
*
* The [range](#Range) of the edit must be single-line and one the same
* line completions where [requested](#CompletionItemProvider.provideCompletionItems) at.
*/
textEdit: TextEdit;