vscode.d.ts 81.1 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

A
Alex Dima 已提交
6 7 8 9
/*
	This is the Type Definition file for VSCode version 0.10.1
*/

E
Erich Gamma 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
	- comments are marked like this '<<< comment >>>'

	some global comments:
	- I'm missing some structure/grouping in this file:
		- it is just a big soup of definitions
		- entrypoints seem to be at the end so you have to read backwards
		- the interface 'Extension' is on line 1384! (neither at the beginning, nor at the end)
	- it would be much easier to grasp the gist of the API if:
		- entrypoints would be at the beginning: start with namespaces and functions and 'Extension' because that is what devs are interested in.
		- then continue with the different extensible areas, workspace first, then editors, commands etc.
		- group the areas by some big separating comment that works like a section header with section overview.
		- in the section header explain the fundamental concepts of that section in a few sentences with forward links to the types and interfaces.
		- move auxiliary types/interfaces that are only used in the section towards the end of the section. So Range and Position would be at the end of the text section.
		- move fundamental (shared) types (e.g. CancellationToken etc.) to the end of the d.ts (but again group related items and use separator comments in between).
	- it would be helpful if the class or interface comment would explain how the class is used, i.e. how instances are created:
			the FileSystemWatcher is a good example:
				"To get an instance of a {{FileSystemWatcher}} use {{workspace.createFileSystemWatcher}}."
	- lots of class or method comments are still missing. If we cannot create all of them in time, we should focus on comments for non-obvious cases.
		I have added a "non-obvious" comment.
J
Johannes Rieken 已提交
30

E
Erich Gamma 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
	- label, names, descriptions: would be great to indicate if they show up in the user interface and therefore must be human readable.
*/


declare namespace vscode {

	/**
	 * Visual Studio Code's version.
	 */
	export var version: string;

	/**
	 * Represents a reference to a command. Provides a title which
	 * will be used to represent a command in the UI and, optionally,
	 * an array of arguments which will be passed to command handler
	 * function when invoked.
	 */
	export interface Command {
		/**
A
Alex Dima 已提交
50
		 * Title of the command, like __save__.
E
Erich Gamma 已提交
51 52 53 54
		 */
		title: string;

		/**
A
Alex Dima 已提交
55 56
		 * The identifier of the actual command handler.
		 * @see [[#commands.registerCommand]].
E
Erich Gamma 已提交
57 58 59 60 61
		 */
		command: string;

		/**
		 * Arguments that the command-handler should be
A
Alex Dima 已提交
62
		 * invoked with.
E
Erich Gamma 已提交
63 64 65 66 67
		 */
		arguments?: any[];
	}

	/**
J
Johannes Rieken 已提交
68 69
	 * Represents a line of text such as a line of source code.
	 *
A
Alex Dima 已提交
70
	 * TextLine objects are __immutable__. When a [document](#TextDocument) changes,
J
Johannes Rieken 已提交
71
	 * previsouly retrieved lines will not represent the latest state.
E
Erich Gamma 已提交
72 73 74 75
	 */
	export interface TextLine {

		/**
A
Alex Dima 已提交
76
		 * The zero-based line number.
E
Erich Gamma 已提交
77 78 79 80 81 82
		 *
		 * @readonly
		 */
		lineNumber: number;

		/**
J
Johannes Rieken 已提交
83
		 * The text of this line without the line separator characters.
E
Erich Gamma 已提交
84 85 86 87 88 89
		 *
		 * @readonly
		 */
		text: string;

		/**
J
Johannes Rieken 已提交
90
		 * The range this line covers without the line separator characters.
E
Erich Gamma 已提交
91 92 93 94 95 96
		 *
		 * @readonly
		 */
		range: Range;

		/**
J
Johannes Rieken 已提交
97
		 * The range this line covers with the line separator characters.
E
Erich Gamma 已提交
98 99 100 101 102 103
		 *
		 * @readonly
		 */
		rangeIncludingLineBreak: Range;

		/**
J
Johannes Rieken 已提交
104 105
		 * The offset of the first character which is not a whitespace character as defined
		 * by `/\s/`.
E
Erich Gamma 已提交
106 107 108 109 110 111 112
		 *
		 * @readonly
		 */
		firstNonWhitespaceCharacterIndex: number;

		/**
		 * Whether this line is whitespace only, shorthand
A
Alex Dima 已提交
113
		 * for [[#TextLine.firstNonWhitespaceCharacterIndex]] === [[#TextLine.text.length]]
E
Erich Gamma 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126
		 *
		 * @readonly
		 */
		isEmptyOrWhitespace: boolean;
	}

	/**
	 * Represents a text document, such as a source file. Text documents have
	 * [lines](#TextLine) and knowledge about an underlying resource like a file.
	 */
	export interface TextDocument {

		/**
J
Johannes Rieken 已提交
127 128 129
		 * The associated URI for this document. Most documents have the __file__-scheme, indicating that they
		 * represent files on disk. However, some documents may have other schemes indicating that they are not
		 * available on disk.
E
Erich Gamma 已提交
130 131 132 133 134 135
		 *
		 * @readonly
		 */
		uri: Uri;

		/**
J
Johannes Rieken 已提交
136
		 * The file system path of the associated resource. Shorthand
A
Alex Dima 已提交
137
		 * notation for [[#TextDocument.uri.fsPath]]. Independent of the uri scheme.
E
Erich Gamma 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150
		 *
		 * @readonly
		 */
		fileName: string;

		/**
		 * Is this document representing an untitled file.
		 *
		 * @readonly
		 */
		isUntitled: boolean;

		/**
J
Johannes Rieken 已提交
151
		 * The identifier of the language associated with this document.
E
Erich Gamma 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
		 *
		 * @readonly
		 */
		languageId: string;

		/**
		 * The version number of this document (it will strictly increase after each
		 * change, including undo/redo).
		 *
		 * @readonly
		 */
		version: number;

		/**
		 * true if there are unpersisted changes
		 *
		 * @readonly
		 */
		isDirty: boolean;

		/**
		 * Save the underlying file.
		 *
		 * @return A promise that will resolve to true when the file
		 *  has been saved.
		 */
		save(): Thenable<boolean>;

		/**
		 * The number of lines in this document.
		 *
		 * @readonly
		 */
		lineCount: number;

		/**
		 * Returns a text line denoted by the line number. Note
		 * that the returned object is *not* live and changes to the
		 * document are not reflected.
		 *
A
Alex Dima 已提交
192 193
		 * @param line A line number in [0, lineCount).
		 * @return A [line](#TextLine).
E
Erich Gamma 已提交
194 195 196 197 198 199 200 201
		 */
		lineAt(line: number): TextLine;

		/**
		 * Returns a text line denoted by the position. Note
		 * that the returned object is *not* live and changes to the
		 * document are not reflected.
		 *
A
Alex Dima 已提交
202 203 204 205 206
		 * The position will be [adjusted](#TextDocument.validatePosition).
		 *
		 * @see [[#TextDocument.lineAt]]
		 * @param position A position.
		 * @return A [line](#TextLine).
E
Erich Gamma 已提交
207 208 209 210 211
		 */
		lineAt(position: Position): TextLine;

		/**
		 * Converts the position to a zero-based offset.
A
Alex Dima 已提交
212 213 214 215 216
		 *
		 * The position will be [adjusted](#TextDocument.validatePosition).
		 *
		 * @param position A position.
		 * @return A valid zero-based offset.
E
Erich Gamma 已提交
217 218 219 220 221
		 */
		offsetAt(position: Position): number;

		/**
		 * Converts a zero-based offset to a position.
A
Alex Dima 已提交
222 223 224
		 *
		 * @param offset A zero-based offset.
		 * @return A valid [position](#Position).
E
Erich Gamma 已提交
225 226 227 228
		 */
		positionAt(offset: number): Position;

		/**
J
Johannes Rieken 已提交
229 230 231 232
		 * Get the text of this document. A substring can be retrieved by providing
		 * a range. The range will be [adjusted](#TextDocument.validateRange).
		 *
		 * @param range Include only the text included by the range.
A
Alex Dima 已提交
233
		 * @return The text inside the provided range or the entire text.
E
Erich Gamma 已提交
234 235 236 237
		 */
		getText(range?: Range): string;

		/**
J
Johannes Rieken 已提交
238 239 240 241
		 * Get a word-range at the given position. By default words are defined by
		 * common separators, like space, -, _, etc. In addition, per languge custom
		 * [word definitions](#LanguageConfiguration.wordPattern) can be defined.
		 *
A
Alex Dima 已提交
242 243
		 * The position will be [adjusted](#TextDocument.validatePosition).
		 *
J
Johannes Rieken 已提交
244 245
		 * @param position A position.
		 * @return A range spanning a word, or `undefined`.
E
Erich Gamma 已提交
246 247 248 249
		 */
		getWordRangeAtPosition(position: Position): Range;

		/**
J
Johannes Rieken 已提交
250 251 252 253
		 * Ensure a range is completely contained in this document.
		 *
		 * @param range A range.
		 * @return The given range or a new, adjusted range.
E
Erich Gamma 已提交
254 255 256 257
		 */
		validateRange(range: Range): Range;

		/**
J
Johannes Rieken 已提交
258 259 260 261
		 * Ensure a position is completely contained in this document.
		 *
		 * @param position A position.
		 * @return The given position or a new, adjusted position.
E
Erich Gamma 已提交
262 263 264 265 266 267
		 */
		validatePosition(position: Position): Position;
	}

	/**
	 * Represents a line and character position, such as
A
Alex Dima 已提交
268
	 * the position of the cursor.
E
Erich Gamma 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
	 *
	 * Position objects are __immutable__. Use the [with](#Position.with) or
	 * [translate](#Position.translate) methods to derive new positions
	 * from an existing position.
	 */
	export class Position {

		/**
		 * The zero-based line value.
		 * @readonly
		 */
		line: number;

		/**
		 * The zero-based character value.
		 * @readonly
		 */
		character: number;

		/**
A
Alex Dima 已提交
289 290
		 * @param line A zero-based line value.
		 * @param character A zero-based character value.
E
Erich Gamma 已提交
291 292 293 294
		 */
		constructor(line: number, character: number);

		/**
A
Alex Dima 已提交
295 296 297
		 * Check if `other` is before this position.
		 *
		 * @param other A position.
E
Erich Gamma 已提交
298
		 * @return `true` if position is on a smaller line
A
Alex Dima 已提交
299
		 * or on the same line on a smaller character.
E
Erich Gamma 已提交
300 301 302 303
		 */
		isBefore(other: Position): boolean;

		/**
A
Alex Dima 已提交
304 305 306 307 308
		 * Check if `other` is before or equal to this position.
		 *
		 * @param other A position.
		 * @return `true` if position is on a smaller line
		 * or on the same line on a smaller or equal character.
E
Erich Gamma 已提交
309 310 311 312
		 */
		isBeforeOrEqual(other: Position): boolean;

		/**
A
Alex Dima 已提交
313 314 315
		 * Check if `other` is after this position.
		 *
		 * @param other A position.
E
Erich Gamma 已提交
316
		 * @return `true` if position is on a greater line
A
Alex Dima 已提交
317
		 * or on the same line on a greater character.
E
Erich Gamma 已提交
318 319 320 321
		 */
		isAfter(other: Position): boolean;

		/**
A
Alex Dima 已提交
322 323 324 325 326
		 * Check if `other` is after or equal to this position.
		 *
		 * @param other A position.
		 * @return `true` if position is on a greater line
		 * or on the same line on a greater or equal character.
E
Erich Gamma 已提交
327 328 329 330
		 */
		isAfterOrEqual(other: Position): boolean;

		/**
A
Alex Dima 已提交
331 332 333
		 * Check if `other` equals this position.
		 *
		 * @param other A position.
E
Erich Gamma 已提交
334 335 336 337 338 339
		 * @return `true` if the line and character of the given position are equal to
		 * the line and character of this position.
		 */
		isEqual(other: Position): boolean;

		/**
A
Alex Dima 已提交
340 341 342 343 344
		 * Compare this to `other`.
		 *
		 * @param other A position.
		 * @return A number smaller than zero if this position is before the given position,
		 * a number greater than zero if this position is after the given position, or zero when
E
Erich Gamma 已提交
345 346 347 348 349
		 * this and the given position are equal.
		 */
		compareTo(other: Position): number;

		/**
A
Alex Dima 已提交
350
		 * Create a new position relative to this position.
E
Erich Gamma 已提交
351 352 353 354 355 356 357 358 359
		 *
		 * @param lineDelta Delta value for the line value, default is `0`.
		 * @param characterDelta Delta value for the character value, default is `0`.
		 * @return A position which line and character is the sum of the current line and
		 * character and the corresponding deltas.
		 */
		translate(lineDelta?: number, characterDelta?: number): Position;

		/**
A
Alex Dima 已提交
360 361
		 * Create a new position derived from this position.
		 *
E
Erich Gamma 已提交
362 363
		 * @param line Value that should be used as line value, default is the [existing value](#Position.line)
		 * @param character Value that should be used as character value, default is the [existing value](#Position.character)
A
Alex Dima 已提交
364
		 * @return A position where line and character are replaced by the given values.
E
Erich Gamma 已提交
365 366 367 368 369 370
		 */
		with(line?: number, character?: number): Position;
	}

	/**
	 * A range represents an ordered pair of two positions.
A
Alex Dima 已提交
371
	 * It is guaranteed that [start](#Range.start).isBeforeOrEqual([end](#Range.end))
E
Erich Gamma 已提交
372 373 374 375 376 377 378 379
	 *
	 * Range objects are __immutable__. Use the [with](#Range.with),
	 * [intersection](#Range.intersection), or [union](#Range.union) methods
	 * to derive new ranges from an existing range.
	 */
	export class Range {

		/**
A
Alex Dima 已提交
380
		 * The start position. It is before or equal to [end](#Range.end).
E
Erich Gamma 已提交
381 382 383 384 385
		 * @readonly
		 */
		start: Position;

		/**
A
Alex Dima 已提交
386
		 * The end position. it is after or equal to [start](#Range.start).
E
Erich Gamma 已提交
387 388 389 390 391 392
		 * @readonly
		 */
		end: Position;

		/**
		 * Create a new range from two position. If `start` is not
A
Alex Dima 已提交
393
		 * before or equal to `end`, the values will be swapped.
E
Erich Gamma 已提交
394
		 *
J
Johannes Rieken 已提交
395 396
		 * @param start A position.
		 * @param end A position.
E
Erich Gamma 已提交
397 398 399 400
		 */
		constructor(start: Position, end: Position);

		/**
A
Alex Dima 已提交
401 402
		 * Create a new range from number coordinates. It is a shorter equivalent of
		 * using `new Range(new Position(startLine, startCharacter), new Position(endLine, endCharacter))`
J
Johannes Rieken 已提交
403
		 *
A
Alex Dima 已提交
404 405 406 407
		 * @param startLine A zero-based line value.
		 * @param startCharacter A zero-based character value.
		 * @param endLine A zero-based line value.
		 * @param endCharacter A zero-based character value.
E
Erich Gamma 已提交
408
		 */
J
Johannes Rieken 已提交
409
		constructor(startLine: number, startCharacter: number, endLine: number, endCharacter: number);
E
Erich Gamma 已提交
410 411 412 413 414 415 416

		/**
		 * `true` iff `start` and `end` are equal.
		 */
		isEmpty: boolean;

		/**
A
Alex Dima 已提交
417
		 * `true` iff `start.line` and `end.line` are equal.
E
Erich Gamma 已提交
418 419 420 421
		 */
		isSingleLine: boolean;

		/**
A
Alex Dima 已提交
422 423 424
		 * Check if a position or a range is contained in this range.
		 *
		 * @param positionOrRange A position or a range.
E
Erich Gamma 已提交
425 426 427 428 429 430
		 * @return `true` iff the position or range is inside or equal
		 * to this range.
		 */
		contains(positionOrRange: Position | Range): boolean;

		/**
A
Alex Dima 已提交
431 432 433
		 * Check if `other` equals this range.
		 *
		 * @param other A range.
E
Erich Gamma 已提交
434 435 436 437 438 439
		 * @return `true` when start and end are [equal](#Position.isEqual) to
		 * start and end of this range
		 */
		isEqual(other: Range): boolean;

		/**
A
Alex Dima 已提交
440 441 442 443
		 * Intersect `range` with this range and returns a new range or `undefined`
		 * if the ranges have no overlap.
		 *
		 * @param range A range.
E
Erich Gamma 已提交
444 445 446 447 448 449
		 * @return A range of the greater start and smaller end positions. Will
		 * return undefined when there is no overlap.
		 */
		intersection(range: Range): Range;

		/**
A
Alex Dima 已提交
450 451 452
		 * Compute the union of `other` with this range.
		 *
		 * @param other A range.
E
Erich Gamma 已提交
453 454 455 456 457
		 * @return A range of smaller start position and the greater end position.
		 */
		union(other: Range): Range;

		/**
A
Alex Dima 已提交
458 459
		 * Create a new range derived from this range.
		 *
E
Erich Gamma 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
		 * @param start A position that should be used as start. The default value is the [current start](#Range.start).
		 * @param end A position that should be used as end. The default value is the [current end](#Range.end).
		 * @return A range derived from this range with the given start and end position.
		 * If start and end are not different this range will be returned.
		 */
		with(start?: Position, end?: Position): Range;
	}

	/**
	 * Represents a text selection in an editor.
	 */
	export class Selection extends Range {

		/**
		 * The position at which the selection starts.
A
Alex Dima 已提交
475
		 * This position might be before or after [active](#Selection.active)
E
Erich Gamma 已提交
476
		 */
A
Alex Dima 已提交
477
		anchor: Position;
E
Erich Gamma 已提交
478 479 480

		/**
		 * The position of the cursor.
A
Alex Dima 已提交
481
		 * This position might be before or after [anchor](#Selection.anchor)
E
Erich Gamma 已提交
482
		 */
A
Alex Dima 已提交
483
		active: Position;
E
Erich Gamma 已提交
484 485 486 487 488 489 490

		/**
		 * Create a selection from two postions.
		 */
		constructor(anchor: Position, active: Position);

		/**
A
Alex Dima 已提交
491
		 * Create a selection from four coordinates.
J
Johannes Rieken 已提交
492
		 *
A
Alex Dima 已提交
493 494 495 496
		 * @param anchorLine A zero-based line value.
		 * @param anchorCharacter A zero-based character value.
		 * @param activeLine A zero-based line value.
		 * @param activeCharacter A zero-based character value.
E
Erich Gamma 已提交
497
		 */
J
Johannes Rieken 已提交
498
		constructor(anchorLine: number, anchorCharacter: number, activeLine: number, activeCharacter: number);
A
Alex Dima 已提交
499

E
Erich Gamma 已提交
500
		/**
A
Alex Dima 已提交
501
		 * A selection is reversed if [active](#Selection.active).isBefore([anchor](#Selection.anchor))
E
Erich Gamma 已提交
502 503 504 505
		 */
		isReversed: boolean;
	}

A
Alex Dima 已提交
506 507 508
	/**
	 * Represents an event describing the change in a [text editor's selections](#TextEditor.selections).
	 */
J
Johannes Rieken 已提交
509
	export interface TextEditorSelectionChangeEvent {
A
Alex Dima 已提交
510 511 512
		/**
		 * The [text editor](#TextEditor) for which the selections have changed.
		 */
J
Johannes Rieken 已提交
513
		textEditor: TextEditor;
A
Alex Dima 已提交
514 515 516
		/**
		 * The new value for the [text editor's selections](#TextEditor.selections).
		 */
J
Johannes Rieken 已提交
517 518 519
		selections: Selection[];
	}

A
Alex Dima 已提交
520 521 522
	/**
	 * Represents an event describing the change in a [text editor's options](#TextEditor.options).
	 */
J
Johannes Rieken 已提交
523
	export interface TextEditorOptionsChangeEvent {
A
Alex Dima 已提交
524 525 526
		/**
		 * The [text editor](#TextEditor) for which the options have changed.
		 */
J
Johannes Rieken 已提交
527
		textEditor: TextEditor;
A
Alex Dima 已提交
528 529 530
		/**
		 * The new value for the [text editor's options](#TextEditor.options).
		 */
J
Johannes Rieken 已提交
531 532 533
		options: TextEditorOptions;
	}

E
Erich Gamma 已提交
534
	/**
A
Alex Dima 已提交
535
	 * Represents a [text editor](#TextEditor)'s [options](#TextEditor.options).
E
Erich Gamma 已提交
536 537 538 539
	 */
	export interface TextEditorOptions {

		/**
A
Alex Dima 已提交
540 541 542
		 * The size in spaces a tab takes. This is used for two purposes:
		 *  - the rendering width of a tab character;
		 *  - the number of spaces to insert when [insertSpaces](#TextEditorOptions.insertSpaces) is true.
E
Erich Gamma 已提交
543 544 545 546 547 548 549 550 551
		 */
		tabSize: number;

		/**
		 * When pressing Tab insert [n](#TextEditorOptions.tabSize) spaces.
		 */
		insertSpaces: boolean;
	}

J
Johannes Rieken 已提交
552
	/**
A
Alex Dima 已提交
553 554
	 * Represents a handle to a set of decorations
	 * sharing the same [styling options](#DecorationRenderOptions) in a [text editor](#TextEditor).
J
Johannes Rieken 已提交
555 556 557 558
	 *
	 * To get an instance of a `TextEditorDecorationType` use
	 * [createTextEditorDecorationType](#window.createTextEditorDecorationType).
	 */
E
Erich Gamma 已提交
559 560 561
	export interface TextEditorDecorationType {

		/**
A
Alex Dima 已提交
562
		 * Internal representation of the handle.
E
Erich Gamma 已提交
563 564 565 566
		 * @readonly
		 */
		key: string;

A
Alex Dima 已提交
567 568 569
		/**
		 * Remove this decoration type and all decorations on all text editors using it.
		 */
E
Erich Gamma 已提交
570 571 572
		dispose(): void;
	}

A
Alex Dima 已提交
573 574 575
	/**
	 * Represents different [reveal](#TextEditor.revealRange) strategies in a text editor.
	 */
E
Erich Gamma 已提交
576
	export enum TextEditorRevealType {
A
Alex Dima 已提交
577 578 579 580 581 582 583
		/**
		 * The range will be revealed with as little scrolling as possible.
		 */
		Default,
		/**
		 * The range will always be revealed in the center of the viewport.
		 */
E
Erich Gamma 已提交
584
		InCenter,
A
Alex Dima 已提交
585 586 587 588
		/**
		 * If the range is outside the viewport, it will be revealed in the center of the viewport.
		 * Otherwise, it will be revealed with as little scrolling as possible.
		 */
E
Erich Gamma 已提交
589 590 591
		InCenterIfOutsideViewport
	}

A
Alex Dima 已提交
592 593 594 595
	/**
	 * Represents different positions for rendering a decoration in an (overview ruler)[#DecorationRenderOptions.overviewRulerLane].
	 * The overview ruler supports three lanes.
	 */
E
Erich Gamma 已提交
596 597 598 599 600 601 602
	export enum OverviewRulerLane {
		Left = 1,
		Center = 2,
		Right = 4,
		Full = 7
	}

A
Alex Dima 已提交
603 604 605
	/**
	 * Represents theme specific rendering styles for a [text editor decoration](#TextEditorDecorationType).
	 */
E
Erich Gamma 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
	export interface ThemableDecorationRenderOptions {
		/**
		 * Background color of the decoration. Use rgba() and define transparent background colors to play well with other decorations.
		 */
		backgroundColor?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		outlineColor?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		outlineStyle?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		outlineWidth?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		borderColor?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		borderRadius?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		borderSpacing?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		borderStyle?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		borderWidth?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		textDecoration?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		cursor?: string;

		/**
		 * CSS styling property that will be applied to text enclosed by a decoration.
		 */
		color?: string;

		/**
A
Alex Dima 已提交
668
		 * An **absolute path** to an image to be rendered in the gutterIconPath.
E
Erich Gamma 已提交
669 670 671 672 673 674 675 676 677
		 */
		gutterIconPath?: string;

		/**
		 * The color of the decoration in the overview ruler. Use rgba() and define transparent colors to play well with other decorations.
		 */
		overviewRulerColor?: string;
	}

A
Alex Dima 已提交
678 679 680
	/**
	 * Represents rendering styles for a [text editor decoration](#TextEditorDecorationType).
	 */
E
Erich Gamma 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
	export interface DecorationRenderOptions extends ThemableDecorationRenderOptions {
		/**
		 * Should the decoration be rendered also on the whitespace after the line text.
		 * Defaults to `false`.
		 */
		isWholeLine?: boolean;

		/**
		 * The position in the overview ruler where the decoration should be rendered.
		 */
		overviewRulerLane?: OverviewRulerLane;

		/**
		 * Overwrite options for light themes.
		 */
		light?: ThemableDecorationRenderOptions;

		/**
		 * Overwrite options for dark themes.
		 */
		dark?: ThemableDecorationRenderOptions;
	}

A
Alex Dima 已提交
704 705 706
	/**
	 * Represents options for a specific decoration in a [decoration set](#TextEditorDecorationType).
	 */
E
Erich Gamma 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719
	export interface DecorationOptions {

		/**
		 * Range to which this decoration is applied.
		 */
		range: Range;

		/**
		 * A message that should be rendered when hovering over the decoration.
		 */
		hoverMessage: MarkedString | MarkedString[];
	}

A
Alex Dima 已提交
720 721 722
	/**
	 * Represents an editor that is attached to a [document](#TextDocument).
	 */
E
Erich Gamma 已提交
723 724 725 726 727 728 729 730
	export interface TextEditor {

		/**
		 * The document associated with this text editor. The document will be the same for the entire lifetime of this text editor.
		 */
		document: TextDocument;

		/**
J
Johannes Rieken 已提交
731
		 * The primary selection on this text editor. Shorthand for `TextEditor.selections[0]`.
E
Erich Gamma 已提交
732 733 734 735
		 */
		selection: Selection;

		/**
J
Johannes Rieken 已提交
736
		 * The selections in this text editor. The primary selection is always at index 0.
E
Erich Gamma 已提交
737 738 739 740 741 742 743 744 745 746
		 */
		selections: Selection[];

		/**
		 * Text editor options.
		 */
		options: TextEditorOptions;

		/**
		 * Perform an edit on the document associated with this text editor.
J
Johannes Rieken 已提交
747 748 749 750 751 752
		 *
		 * The given callback-function is invoked with an [edit-builder](#TextEditorEdit) which must
		 * be used to make edits. Note that the the edit-builder is only valid while the
		 * callback executes.
		 *
		 * @param callback A function which can make edits using an [edit-builder](#TextEditorEdit).
A
Alex Dima 已提交
753
		 * @return A promise that resolves with a value indicating if the edits could be applied.
E
Erich Gamma 已提交
754 755 756 757
		 */
		edit(callback: (editBuilder: TextEditorEdit) => void): Thenable<boolean>;

		/**
J
Johannes Rieken 已提交
758 759 760
		 * Adds a set of decorations to the text editor. If a set of decorations already exists with
		 * the given [decoration type](#TextEditorDecorationType), they will be replaced.
		 *
A
Alex Dima 已提交
761 762
		 * See [createTextEditorDecorationType](#window.createTextEditorDecorationType).
		 *
J
Johannes Rieken 已提交
763 764
		 * @param decorationType A decoration type.
		 * @param rangesOrOptions Either [ranges](#Range) or more detailed [options](#DecorationOptions).
E
Erich Gamma 已提交
765
		 */
J
Johannes Rieken 已提交
766
		setDecorations(decorationType: TextEditorDecorationType, rangesOrOptions: Range[] | DecorationOptions[]): void;
E
Erich Gamma 已提交
767 768

		/**
A
Alex Dima 已提交
769 770 771 772
		 * Scroll as indicated by `revealType` in order to reveal the given range.
		 *
		 * @param range A range.
		 * @param revealType The scrolling strategy for revealing `range`.
E
Erich Gamma 已提交
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
		 */
		revealRange(range: Range, revealType?: TextEditorRevealType): void;

		/**
		 * **This method is deprecated.** Use [window.showTextDocument](#window.showTextDocument)
		 * instead. This method shows unexpected bahviour and will be removed in the next major update.
		 *
		 * @deprecated
		 * Show the text editor.
		 */
		show(column?: ViewColumn): void;

		/**
		 * **This method is deprecated.** Use the command 'workbench.action.closeActiveEditor' instead.
		 * This method shows unexpected bahviour and will be removed in the next major update.
		 *
		 * @deprecated
		 *
		 * Hide the text editor.
		 */
		hide(): void;
	}


	/**
A
Alex Dima 已提交
798 799 800
	 * A complex edit that will be applied in one transaction on a TextEditor.
	 * This holds a description of the edits and if the edits are valid (i.e. no overlapping regions, document was not changed in the meantime, etc.)
	 * they can be applied on a [document](#Document) associated with a [text editor](#TextEditor).
E
Erich Gamma 已提交
801 802 803 804
	 *
	 */
	export interface TextEditorEdit {
		/**
A
Alex Dima 已提交
805 806 807 808 809
		 * Replace a certain text region with a new value.
		 * You can use \r\n or \n in `value` and they will be normalized to the current [document](#Document).
		 *
		 * @param location The range this operation should remove.
		 * @param value The new text this operation should insert after removing `location`.
E
Erich Gamma 已提交
810 811 812 813
		 */
		replace(location: Position | Range | Selection, value: string): void;

		/**
A
Alex Dima 已提交
814 815 816 817 818 819
		 * Insert text at a location.
		 * You can use \r\n or \n in `value` and they will be normalized to the current [document](#Document).
		 * Although the equivalent text edit can be made with [replace](#TextEditorEdit.replace), `insert` will produce a different resulting selection (it will get moved).
		 *
		 * @param location The position where the new text should be inserted.
		 * @param value The new text this operation should insert.
E
Erich Gamma 已提交
820 821 822 823 824
		 */
		insert(location: Position, value: string): void;

		/**
		 * Delete a certain text region.
A
Alex Dima 已提交
825 826
		 *
		 * @param location The range this operation should remove.
E
Erich Gamma 已提交
827 828 829 830
		 */
		delete(location: Range | Selection): void;
	}

J
Johannes Rieken 已提交
831 832


E
Erich Gamma 已提交
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
	/**
	 * A universal resource identifier representing either a file on disk on
	 * or another resource, e.g untitled.
	 */
	export class Uri {

		/**
		 * Create URI for a file system path
		 */
		static file(path: string): Uri;

		/**
		 *
		 */
		static parse(value: string): Uri;

		/**
		 * scheme is the 'http' part of 'http://www.msft.com/some/path?query#fragment'.
		 * The part before the first colon.
		 */
		scheme: string;

		/**
		 * authority is the 'www.msft.com' part of 'http://www.msft.com/some/path?query#fragment'.
		 * The part between the first double slashes and the next slash.
		 */
		authority: string;

		/**
		 * path is the '/some/path' part of 'http://www.msft.com/some/path?query#fragment'.
		 */
		path: string;

		/**
		 * query is the 'query' part of 'http://www.msft.com/some/path?query#fragment'.
		 */
		query: string;

		/**
		 * fragment is the 'fragment' part of 'http://www.msft.com/some/path?query#fragment'.
		 */
		fragment: string;

		/**
		 * Retuns a string representing the corresponding file system path of this URI.
		 * Will handle UNC paths and normalize windows drive letters to lower-case. Also
		 * uses the platform specific path separator. Will *not* validate the path for
		 * invalid characters and semantics. Will *not* look at the scheme of this URI.
		 */
		fsPath: string;

		/**
		 * Returns a canonical representation of this URI. The representation and normalization
		 * of a URI depends on the scheme.
		 */
		toString(): string;

		toJSON(): any;
	}

	/**
	 * A cancellation token is passed to asynchronous or long running
	 * operation to request cancellation, like cancelling a request
	 * for completion items because the user continued to type.
	 *
A
Alex Dima 已提交
898
	 * A cancellation token can only cancel once. That means it
E
Erich Gamma 已提交
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984
	 * signaled cancellation it will do so forever   <<< don't understand this >>>
	 */
	export interface CancellationToken {

		/**
		 * `true` when the token has been cancelled.
		 */
		isCancellationRequested: boolean;

		/**
		 * An [event](#Event) which fires upon cancellation
		 */
		onCancellationRequested: Event<any>;
	}

	/**
	 * A cancellation source creates [cancellation tokens](#CancellationToken).
	 */
	export class CancellationTokenSource {

		/**
		 * The current token
		 */
		token: CancellationToken;

		/**
		 * Signal cancellation on the token.
		 */
		cancel(): void;

		/**
		 * Signal cancellation and free resources   <<< so this is like 'cancel()'? then the name is a bit harmless (or misleading) ... >>>
		 */
		dispose(): void;
	}

	// <<< Should we have an IDispose interface people can implement by themselves and then push into a subscriptions
	//     instead of always creating an extra object and a function >>>

	/**
	 * Represents a type which can release resources, such
	 * as event listening or a timer.
	 */
	export class Disposable {

		/**
		 * Combine many disposable-likes into one. Use this method
		 * when having objects with a dispose function which are not
		 * instances of Disposable.
		 *
		 * @return Returns a new disposable which, upon dispose, will
		 * dispose all provided disposables.
		 */
		static from(...disposableLikes: { dispose: () => any }[]): Disposable;

		/**
		 * Creates a new Disposable calling the provided function
		 * on dispose.
		 * @param callOnDispose Function that disposes something
		 */
		constructor(callOnDispose: Function);

		/**
		 * Dispose this object.
		 */
		dispose(): any;
	}

	/**
	 * Represents a typed event.
	 * <<< an example for how to use? >>>
	 */
	export interface Event<T> {

		/**
		 *
		 * @param listener The listener function will be called when the event happens.
		 * @param thisArgs The 'this' which will be used when calling the event listener.
		 * @param disposables An array to which a {{IDisposable}} will be added. The
		 * @return
		 */
		(listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]): Disposable;
	}

	/**
	 * A file system watcher notifies about changes to files and folders
J
Johannes Rieken 已提交
985 986
	 * on disk. To get an instance of a `FileSystemWatcher` use
	 * [createFileSystemWatcher](#workspace.createFileSystemWatcher).
E
Erich Gamma 已提交
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
	 */
	export interface FileSystemWatcher extends Disposable {

		/**
		 * true if this file system watcher has been created such that
		 * it ignores creation file system events.
		 */
		ignoreCreateEvents: boolean;

		/**
		 * true if this file system watcher has been created such that
		 * it ignores change file system events.
		 */
		ignoreChangeEvents: boolean;

		/**
		 * true if this file system watcher has been created such that
		 * it ignores delete file system events.
		 */
		ignoreDeleteEvents: boolean

		/**
		 * An event which fires on file/folder creation.
		 */
		onDidCreate: Event<Uri>;

		/**
		 * An event which fires on file/folder change.
		 */
		onDidChange: Event<Uri>;

		/**
		 * An event which fires on file/folder deletion.
		 */
		onDidDelete: Event<Uri>;
	}

	/**
	 * Represents an item that can be selected from
	 * a list of items
	 */
	export interface QuickPickItem {

		/**
J
Johannes Rieken 已提交
1031
		 * A label. Will be rendered prominent.
E
Erich Gamma 已提交
1032 1033 1034 1035
		 */
		label: string;

		/**
J
Johannes Rieken 已提交
1036
		 * A description. Will be rendered less prominent.
E
Erich Gamma 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
		 */
		description: string;
	}

	/**
	 *
	 */
	export interface QuickPickOptions {
		/**
		* an optional flag to include the description when filtering the picks
		*/
		matchOnDescription?: boolean;

		/**
		* an optional string to show as place holder in the input box to guide the user what she picks on
		*/
		placeHolder?: string;
	}

	/**
J
Johannes Rieken 已提交
1057
	 * Represents an action that is shown with an information, warning, or
E
Erich Gamma 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
	 * error message
	 *
	 * @see #window.showInformationMessage
	 * @see #window.showWarningMessage
	 * @see #window.showErrorMessage
	 */
	export interface MessageItem {

		/**
		 * A short title like 'Retry', 'Open Log' etc
		 */
		title: string;
	}

	/**
	 *
	 */
	export interface InputBoxOptions {
J
Johannes Rieken 已提交
1076

E
Erich Gamma 已提交
1077
		/**
J
Johannes Rieken 已提交
1078
		* The value to prefill in the input box.
E
Erich Gamma 已提交
1079 1080 1081 1082 1083 1084 1085 1086 1087
		*/
		value?: string;

		/**
		* The text to display underneath the input box.
		*/
		prompt?: string;

		/**
J
Johannes Rieken 已提交
1088
		* An optional string to show as place holder in the input box to guide the user what to type.
E
Erich Gamma 已提交
1089 1090 1091 1092
		*/
		placeHolder?: string;

		/**
J
Johannes Rieken 已提交
1093
		* Set to true to show a password prompt that will not show the typed value.
E
Erich Gamma 已提交
1094 1095 1096 1097 1098 1099
		*/
		password?: boolean;
	}

	/**
	 * A document filter denotes a document by different properties like
A
Alex Dima 已提交
1100 1101
	 * the [language](#TextDocument.languageId), the [scheme](#Uri.scheme) of
	 * it's resource, or a glob-pattern that is applied to the [path](#TextDocument.fileName)
E
Erich Gamma 已提交
1102
	 *
J
Johannes Rieken 已提交
1103 1104
	 * @sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }`
	 * @sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**\project.json' }`
E
Erich Gamma 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113
	 */
	export interface DocumentFilter {

		/**
		 * A language id, like `typescript`.
		 */
		language?: string;

		/**
J
Johannes Rieken 已提交
1114
		 * A Uri [scheme](#Uri.scheme), like `file` or `untitled`.
E
Erich Gamma 已提交
1115 1116 1117 1118
		 */
		scheme?: string;

		/**
J
Johannes Rieken 已提交
1119
		 * A glob pattern, like `*.{ts,js}`.
E
Erich Gamma 已提交
1120 1121 1122 1123 1124 1125
		 */
		pattern?: string;
	}

	/**
	 * A language selector is the combination of one or many language identifiers
J
Johannes Rieken 已提交
1126 1127 1128 1129
	 * and [language filters](#LanguageFilter).
	 *
	 * @sample `let sel:DocumentSelector = 'typescript'`;
	 * @sample `let sel:DocumentSelector = ['typescript', { language: 'json', pattern: '**\tsconfig.json' }]`;
E
Erich Gamma 已提交
1130 1131 1132 1133 1134
	 */
	export type DocumentSelector = string | DocumentFilter | (string | DocumentFilter)[];

	/**
	 * Contains additional diagnostic information about the context in which
J
Johannes Rieken 已提交
1135
	 * a [code action](#CodeActionProvider.provideCodeActions) is run.
E
Erich Gamma 已提交
1136 1137
	 */
	export interface CodeActionContext {
J
Johannes Rieken 已提交
1138 1139 1140 1141

		/**
		 * An array of diagnostics.
		 */
E
Erich Gamma 已提交
1142 1143 1144 1145
		diagnostics: Diagnostic[];
	}

	/**
J
Johannes Rieken 已提交
1146 1147 1148 1149
	 * The code action interface defines the contract between extensions and
	 * the [light bulb](https://code.visualstudio.com/docs/editor/editingevolved#_code-action) feature.
	 *
	 * A code action can be any command that is [known](#commands.getCommands) to the system.
E
Erich Gamma 已提交
1150 1151 1152 1153 1154 1155
	 */
	export interface CodeActionProvider {

		/**
		 * Provide commands for the given document and range.
		 *
J
Johannes Rieken 已提交
1156 1157 1158 1159 1160
		 * @param document The document in which the command was invoked.
		 * @param range The range for which the command was invoked.
		 * @param context
		 * @return An array of commands or a thenable of such. The lack of a result can be
		 * signaled by returing `undefined`, `null`, or an empty array.
E
Erich Gamma 已提交
1161 1162 1163 1164 1165 1166 1167
		 */
		provideCodeActions(document: TextDocument, range: Range, context: CodeActionContext, token: CancellationToken): Command[] | Thenable<Command[]>;
	}

	/**
	 * A code lens represents a [command](#Command) that should be shown along with
	 * source text, like the number of references, a way to run tests, etc.
J
Johannes Rieken 已提交
1168 1169 1170 1171 1172
	 *
	 * A code lens is _unresolved_ when no command is associated to it. For performance
	 * reasons the creation of a code lens and resolving should be done to two stages.
	 * @see [[#CodeLensProvider.provideCodeLenses]]
	 * @see [[#CodeLensProvider.resolveCodeLens]]
E
Erich Gamma 已提交
1173 1174 1175 1176 1177 1178 1179 1180 1181
	 */
	export class CodeLens {

		/**
		 * The range in which this code lens is valid. Should only span a single line.
		 */
		range: Range;

		/**
J
Johannes Rieken 已提交
1182
		 * The command this code lens represents.
E
Erich Gamma 已提交
1183 1184 1185 1186
		 */
		command: Command;

		/**
J
Johannes Rieken 已提交
1187
		 * `true` when there is a command associated.
E
Erich Gamma 已提交
1188 1189
		 */
		isResolved: boolean;
J
Johannes Rieken 已提交
1190 1191 1192 1193 1194 1195 1196 1197

		/**
		 * Creates a new code lens object.
		 *
		 * @param range The range to which this code lens applies.
		 * @param command The command associated to this code lens.
		 */
		constructor(range: Range, command?: Command);
E
Erich Gamma 已提交
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
	}

	/**
	 * A code lens provider adds [commands](#Command) to source text. The commands will be shown
	 * as dedicated horizontal lines in between the source text.
	 */
	export interface CodeLensProvider {

		/**
		 * Compute a list of [lenses](#CodeLens). This call should return as fast as possible and if
		 * computing the command is expensive implementors should only return CodeLens-objects with the
		 * range set and implement [resolve](#CodeLensProvider.resolveCodeLens).
		 */
		provideCodeLenses(document: TextDocument, token: CancellationToken): CodeLens[] | Thenable<CodeLens[]>;

		/**
		 * This function will be called for each visible code lens, usually when scrolling and after
		 * calls to [compute](#CodeLensProvider.provideCodeLenses)-lenses.
		 */
		resolveCodeLens?(codeLens: CodeLens, token: CancellationToken): CodeLens | Thenable<CodeLens>;
	}

	/**
J
Johannes Rieken 已提交
1221 1222 1223
	 * The definition of a symbol represented as one or many [locations](#Location).
	 * For most programming languages there is only one location at which a symbol is
	 * defined.
E
Erich Gamma 已提交
1224 1225 1226
	 */
	export type Definition = Location | Location[];

J
Johannes Rieken 已提交
1227 1228 1229 1230 1231
	/**
	 * The definition provider interface defines the contract between extensions and
	 * the [go to definition](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-definition)
	 * and peek definition features.
	 */
E
Erich Gamma 已提交
1232
	export interface DefinitionProvider {
J
Johannes Rieken 已提交
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243

		/**
		 * Provide the definition of the symbol at the given position and document.
		 *
		 * @param document The document in which the command was invoked.
		 * @param position The position at which the command was invoked.
		 * @param token A cancellation token.
		 * @return An definition or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined` or `null`.
		 */
		provideDefinition(document: TextDocument, position: Position, token: CancellationToken): Definition | Thenable<Definition>;
E
Erich Gamma 已提交
1244 1245 1246 1247 1248 1249 1250 1251 1252
	}

	/**
	 * FormattedString can be used to render text with a tiny subset of markdown. FormattedString
	 * is either a string that supports **bold** and __italic__ or a code-block that
	 * provides a language and a code Snippet.
	 */
	export type MarkedString = string | { language: string; value: string };

J
Johannes Rieken 已提交
1253 1254 1255 1256
	/**
	 * A hover represents additional information for a symbol or word. Hovers are
	 * rendered in a tooltip-like widget.
	 */
E
Erich Gamma 已提交
1257 1258
	export class Hover {

J
Johannes Rieken 已提交
1259 1260 1261
		/**
		 * The contents of this hover.
		 */
E
Erich Gamma 已提交
1262 1263
		contents: MarkedString[];

J
Johannes Rieken 已提交
1264 1265 1266 1267 1268
		/**
		 * The range to which this hover appiles. When missing, the
		 * editor will use the range at the current position or the
		 * current position.
		 */
E
Erich Gamma 已提交
1269 1270
		range: Range;

J
Johannes Rieken 已提交
1271 1272 1273 1274 1275 1276
		/**
		 * Creates a new hover object.
		 *
		 * @param contents The contents of the hover.
		 * @param range The range to which the hover appiles.
		 */
E
Erich Gamma 已提交
1277 1278 1279
		constructor(contents: MarkedString | MarkedString[], range?: Range);
	}

J
Johannes Rieken 已提交
1280 1281 1282 1283
	/**
	 * The hover provider interface defines the contract between extensions and
	 * the [hover](https://code.visualstudio.com/docs/editor/editingevolved#_hover)-feature.
	 */
E
Erich Gamma 已提交
1284
	export interface HoverProvider {
J
Johannes Rieken 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296

		/**
		 * Provide a hover for the given position and document. Multiple hovers at the same
		 * position will be merged by the editor. A hover can have a range to which defaults
		 * to the word range at the position.
		 *
		 * @param document The document in which the command was invoked.
		 * @param position The position at which the command was invoked.
		 * @param token A cancellation token.
		 * @return A hover or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined` or `null`.
		 */
E
Erich Gamma 已提交
1297 1298 1299
		provideHover(document: TextDocument, position: Position, token: CancellationToken): Hover | Thenable<Hover>;
	}

J
Johannes Rieken 已提交
1300 1301 1302
	/**
	 * A document highlight kind.
	 */
E
Erich Gamma 已提交
1303
	export enum DocumentHighlightKind {
J
Johannes Rieken 已提交
1304 1305 1306 1307

		/**
		 * A textual occurrance.
		 */
E
Erich Gamma 已提交
1308
		Text,
J
Johannes Rieken 已提交
1309 1310 1311 1312

		/**
		 * Read-access of a symbol, like reading a variable.
		 */
E
Erich Gamma 已提交
1313
		Read,
J
Johannes Rieken 已提交
1314 1315 1316 1317

		/**
		 * Write-access of a symbol, like writing to a variable.
		 */
E
Erich Gamma 已提交
1318 1319 1320
		Write
	}

J
Johannes Rieken 已提交
1321 1322 1323 1324 1325
	/**
	 * A document highlight is a range inside a text document which deserves
	 * special attention. Usually a document highlight is visualized by changing
	 * the background color of its range.
	 */
E
Erich Gamma 已提交
1326
	export class DocumentHighlight {
J
Johannes Rieken 已提交
1327 1328 1329 1330

		/**
		 * The range this highlight applies to.
		 */
E
Erich Gamma 已提交
1331
		range: Range;
J
Johannes Rieken 已提交
1332 1333 1334 1335

		/**
		 * The highlight kind, default is [text](#DocumentHighlightKind.Text).
		 */
E
Erich Gamma 已提交
1336
		kind: DocumentHighlightKind;
J
Johannes Rieken 已提交
1337 1338 1339 1340 1341 1342 1343 1344

		/**
		 * Creates a new document highlight object.
		 *
		 * @param range The range the highlight applies to.
		 * @param kind The highlight kind, default is [text](#DocumentHighlightKind.Text).
		 */
		constructor(range: Range, kind?: DocumentHighlightKind);
E
Erich Gamma 已提交
1345 1346
	}

J
Johannes Rieken 已提交
1347 1348 1349 1350
	/**
	 * The document highlight provider interface defines the contract between extensions and
	 * the word-highlight-feature.
	 */
E
Erich Gamma 已提交
1351
	export interface DocumentHighlightProvider {
J
Johannes Rieken 已提交
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362

		/**
		 * Provide a set of document highligts, like all occurrences of a variable or
		 * all exit-points of a function.
		 *
		 * @param document The document in which the command was invoked.
		 * @param position The position at which the command was invoked.
		 * @param token A cancellation token.
		 * @return An array of document highlights or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined`, `null`, or an empty array.
		 */
E
Erich Gamma 已提交
1363 1364 1365
		provideDocumentHighlights(document: TextDocument, position: Position, token: CancellationToken): DocumentHighlight[] | Thenable<DocumentHighlight[]>;
	}

J
Johannes Rieken 已提交
1366 1367 1368
	/**
	 * A symbol kind.
	 */
E
Erich Gamma 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
	export enum SymbolKind {
		File,
		Module,
		Namespace,
		Package,
		Class,
		Method,
		Property,
		Field,
		Constructor,
		Enum,
		Interface,
		Function,
		Variable,
		Constant,
		String,
		Number,
		Boolean,
J
Johannes Rieken 已提交
1387
		Array
E
Erich Gamma 已提交
1388 1389
	}

J
Johannes Rieken 已提交
1390 1391 1392 1393
	/**
	 * Represents information about programming constructs like variables, classes,
	 * interfaces etc.
	 */
E
Erich Gamma 已提交
1394
	export class SymbolInformation {
J
Johannes Rieken 已提交
1395 1396 1397 1398

		/**
		 * The name of this symbol.
		 */
E
Erich Gamma 已提交
1399
		name: string;
J
Johannes Rieken 已提交
1400 1401 1402 1403

		/**
		 * The name of the symbol containing this symbol.
		 */
E
Erich Gamma 已提交
1404
		containerName: string;
J
Johannes Rieken 已提交
1405 1406 1407 1408

		/**
		 * The kind of this symbol.
		 */
E
Erich Gamma 已提交
1409
		kind: SymbolKind;
J
Johannes Rieken 已提交
1410 1411 1412 1413

		/**
		 * The location of this symbol.
		 */
E
Erich Gamma 已提交
1414
		location: Location;
J
Johannes Rieken 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425

		/**
		 * Creates a new symbol information object.
		 *
		 * @param name The name of the symbol.
		 * @param kind The kind of the symbol.
		 * @param range The range of the location of the symbol.
		 * @param uri The resource of the location of symbol, defaults to the current document.
		 * @param containerName The name of the symbol containg the symbol.
		 */
		constructor(name: string, kind: SymbolKind, range: Range, uri?: Uri, containerName?: string);
E
Erich Gamma 已提交
1426 1427
	}

J
Johannes Rieken 已提交
1428 1429 1430 1431
	/**
	 * The document symbol provider interface defines the contract between extensions and
	 * the [go to symbol](https://code.visualstudio.com/docs/editor/editingevolved#_goto-symbol)-feature.
	 */
E
Erich Gamma 已提交
1432
	export interface DocumentSymbolProvider {
J
Johannes Rieken 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441

		/**
		 * Provide symbol information for the given document.
		 *
		 * @param document The document in which the command was invoked.
		 * @param token A cancellation token.
		 * @return An array of document highlights or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined`, `null`, or an empty array.
		 */
E
Erich Gamma 已提交
1442 1443 1444
		provideDocumentSymbols(document: TextDocument, token: CancellationToken): SymbolInformation[] | Thenable<SymbolInformation[]>;
	}

J
Johannes Rieken 已提交
1445 1446 1447 1448
	/**
	 * The workspace symbol provider interface defines the contract between extensions and
	 * the [symbol search](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name)-feature.
	 */
E
Erich Gamma 已提交
1449
	export interface WorkspaceSymbolProvider {
J
Johannes Rieken 已提交
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459

		/**
		 * Project-wide search for a symbol matching the given query string. It is up to the provider
		 * how to search given the query string, like substring, indexOf etc.
		 *
		 * @param query A non-empty query string.
		 * @param token A cancellation token.
		 * @return An array of document highlights or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined`, `null`, or an empty array.
		 */
E
Erich Gamma 已提交
1460 1461 1462
		provideWorkspaceSymbols(query: string, token: CancellationToken): SymbolInformation[] | Thenable<SymbolInformation[]>;
	}

J
Johannes Rieken 已提交
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
	/**
	 * Value-object that contains additional information when
	 * requesting references.
	 */
	export interface ReferenceContext {

		/**
		 * Include the declaration of the current symbol.
		 */
		includeDeclaration: boolean;
	}

	/**
	 * The reference provider interface defines the contract between extensions and
	 * the [find references](https://code.visualstudio.com/docs/editor/editingevolved#_peek)-feature.
	 */
E
Erich Gamma 已提交
1479
	export interface ReferenceProvider {
J
Johannes Rieken 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491

		/**
		 * Provide a set of project-wide references for the given position and document.
		 *
		 * @param document The document in which the command was invoked.
		 * @param position The position at which the command was invoked.
		 * @param context
		 * @param token A cancellation token.
		 * @return An array of locations or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined`, `null`, or an empty array.
		 */
		provideReferences(document: TextDocument, position: Position, context: ReferenceContext, token: CancellationToken): Location[] | Thenable<Location[]>;
E
Erich Gamma 已提交
1492 1493
	}

J
Johannes Rieken 已提交
1494 1495 1496
	/**
	 *
	 */
E
Erich Gamma 已提交
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
	export class TextEdit {
		static replace(range: Range, newText: string): TextEdit;
		static insert(position: Position, newText: string): TextEdit;
		static delete(range: Range): TextEdit;
		constructor(range: Range, newText: string);
		range: Range;
		newText: string;
	}

	/**
J
Johannes Rieken 已提交
1507 1508 1509
	 * A workspace edit represents textual changes for many documents. When applying a workspace edit,
	 * the editor implements an 'all-or-nothing'-strategy, that means failure to load one document or
	 * make changes to one document will make this edit being ignored.
E
Erich Gamma 已提交
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
	 */
	export class WorkspaceEdit {

		/**
		 * The number of affected resources.
		 *
		 * @readonly
		 */
		size: number;

J
Johannes Rieken 已提交
1520 1521 1522 1523 1524 1525 1526 1527
		/**
		 * Replace the given range with given text for the given resource.
		 *
		 * @param uri A resource identifier.
		 * @param range A range.
		 * @param newText A string.
		 */
		replace(uri: Uri, range: Range, newText: string): void;
E
Erich Gamma 已提交
1528

J
Johannes Rieken 已提交
1529 1530 1531 1532 1533 1534 1535 1536
		/**
		 * Insert the given text at the given position.
		 *
		 * @param uri A resource identifier.
		 * @param position A position.
		 * @param newText A string.
		 */
		insert(uri: Uri, position: Position, newText: string): void;
E
Erich Gamma 已提交
1537

J
Johannes Rieken 已提交
1538 1539 1540 1541
		/**
		 * Delete the text at the give range.
		 */
		delete(uri: Uri, range: Range): void;
E
Erich Gamma 已提交
1542

J
Johannes Rieken 已提交
1543 1544 1545 1546 1547
		/**
		 * Check if this edit affects the given resource.
		 * @param uri A resource identifier.
		 * @return `true` if the given resource will be touched by this edit
		 */
E
Erich Gamma 已提交
1548 1549
		has(uri: Uri): boolean;

J
Johannes Rieken 已提交
1550 1551 1552 1553 1554 1555
		/**
		 * Set (and replace) text edits for a resource.
		 *
		 * @param uri A resource identifier.
		 * @param edits An array of text edits.
		 */
E
Erich Gamma 已提交
1556 1557
		set(uri: Uri, edits: TextEdit[]): void;

J
Johannes Rieken 已提交
1558 1559 1560 1561 1562 1563
		/**
		 * Get the text edits for a resource.
		 *
		 * @param uri A resource identifier.
		 * @return An array of text edits.
		 */
E
Erich Gamma 已提交
1564 1565
		get(uri: Uri): TextEdit[];

J
Johannes Rieken 已提交
1566 1567 1568 1569 1570
		/**
		 * Get all text edits grouped by resource.
		 *
		 * @return An array of `[Uri, TextEdit[]]`-tuples.
		 */
E
Erich Gamma 已提交
1571 1572 1573 1574
		entries(): [Uri, TextEdit[]][];
	}

	/**
J
Johannes Rieken 已提交
1575 1576
	 * The rename provider interface defines the contract between extensions and
	 * the [rename](https://code.visualstudio.com/docs/editor/editingevolved#_rename-symbol)-feature.
E
Erich Gamma 已提交
1577 1578
	 */
	export interface RenameProvider {
J
Johannes Rieken 已提交
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590

		/**
		 * Provide an edit that describes changes that have to be made to one
		 * or many resources to rename a symbol to a different name.
		 *
		 * @param document The document in which the command was invoked.
		 * @param position The position at which the command was invoked.
		 * @param newName The new name of the symbol. If the given name is not valid, the provider must return a rejected promise.
		 * @param token A cancellation token.
		 * @return A workspace edit or a thenable that resolves to such. The lack of a result can be
		 * signaled by returing `undefined` or `null`.
		 */
E
Erich Gamma 已提交
1591 1592 1593
		provideRenameEdits(document: TextDocument, position: Position, newName: string, token: CancellationToken): WorkspaceEdit | Thenable<WorkspaceEdit>;
	}

J
Johannes Rieken 已提交
1594 1595 1596
	/**
	 * Value-object describing what options formatting should use.
	 */
E
Erich Gamma 已提交
1597 1598 1599 1600 1601 1602 1603
	export interface FormattingOptions {
		tabSize: number;
		insertSpaces: boolean;
		[key: string]: boolean | number | string;	// <<< non-obvious >>>
	}

	/**
J
Johannes Rieken 已提交
1604
	 *
E
Erich Gamma 已提交
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
	 */
	export interface DocumentFormattingEditProvider {
		provideDocumentFormattingEdits(document: TextDocument, options: FormattingOptions, token: CancellationToken): TextEdit[] | Thenable<TextEdit[]>;
	}

	/**
	 *
	 */
	export interface DocumentRangeFormattingEditProvider {
		provideDocumentRangeFormattingEdits(document: TextDocument, range: Range, options: FormattingOptions, token: CancellationToken): TextEdit[] | Thenable<TextEdit[]>;
	}

	/**
	 *
	 */
	export interface OnTypeFormattingEditProvider {
		provideOnTypeFormattingEdits(document: TextDocument, position: Position, ch: string, options: FormattingOptions, token: CancellationToken): TextEdit[] | Thenable<TextEdit[]>;
	}

	export class ParameterInformation {
		label: string;
		documentation: string;		// <<< non-obvious: what is the supported format? >>>
		constructor(label: string, documentation?: string);
	}

	export class SignatureInformation {
		label: string;
		documentation: string;		// <<< non-obvious: what is the supported format? >>>
		parameters: ParameterInformation[];
		constructor(label: string, documentation?: string);
	}

	export class SignatureHelp {
		signatures: SignatureInformation[];
		activeSignature: number;
		activeParameter: number;
	}

	export interface SignatureHelpProvider {
		provideSignatureHelp(document: TextDocument, position: Position, token: CancellationToken): SignatureHelp | Thenable<SignatureHelp>;
	}

	export enum CompletionItemKind {
		Text,
		Method,
		Function,
		Constructor,
		Field,
		Variable,
		Class,
		Interface,
		Module,
		Property,
		Unit,
		Value,
		Enum,
		Keyword,
		Snippet,
		Color,
		File,
		Reference
	}

	export class CompletionItem {
		label: string;
		kind: CompletionItemKind;
		detail: string;			// <<< non-obvious >>>
		documentation: string;	// <<< non-obvious: what is the supported format? >>>
		sortText: string;		// <<< non-obvious: is this the 'sort key'? >>>
		filterText: string;		// <<< non-obvious: is this the 'filter key'? >>>
		insertText: string;
		textEdit: TextEdit;		// <<< non-obvious: what is the relation between insertText and textEdit? >>>
		constructor(label: string);
	}

	export interface CompletionItemProvider {
		provideCompletionItems(document: TextDocument, position: Position, token: CancellationToken): CompletionItem[] | Thenable<CompletionItem[]>;
		resolveCompletionItem?(item: CompletionItem, token: CancellationToken): CompletionItem | Thenable<CompletionItem>;
	}

	export type CharacterPair = [string, string];

	export interface CommentRule {
		lineComment?: string;
		blockComment?: CharacterPair;	// <<< non-obvious: is this the start/end characters of the comment?
	}

	export interface IndentationRule {
		decreaseIndentPattern: RegExp;
		increaseIndentPattern: RegExp;
		indentNextLinePattern?: RegExp;
		unIndentedLinePattern?: RegExp;
	}

	// <<< this is not an 'action' but an 'indent type'
	export enum IndentAction {
		None,
		Indent,
		IndentOutdent,
		Outdent
	}

	export interface EnterAction {
		indentAction: IndentAction;		// <<< confusing: another reason not to use the name 'IndentAction' >>>
		appendText?: string;
		removeText?: number;		// <<< non-obvious: the number of characters to remove? >>>
	}

	export interface OnEnterRule {
		beforeText: RegExp;
		afterText?: RegExp;
		action: EnterAction;
	}

	export interface LanguageConfiguration {
		comments?: CommentRule;
		brackets?: CharacterPair[];
		wordPattern?: RegExp;
		indentationRules?: IndentationRule;
		onEnterRules?: OnEnterRule[];

		/**
A
Alex Dima 已提交
1727 1728
		 * **Deprecated**.
		 * @deprecated
E
Erich Gamma 已提交
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
		 */
		__electricCharacterSupport?: {
			brackets: {
				tokenType: string;
				open: string;
				close: string;
				isElectric: boolean;
			}[];
			docComment?: {
				scope: string; // What tokens should be used to detect a doc comment (e.g. 'comment.documentation').
				open: string; // The string that starts a doc comment (e.g. '/**')
				lineStart: string; // The string that appears at the start of each line, except the first and last (e.g. ' * ').
				close?: string; // The string that appears on the last line and closes the doc comment (e.g. ' */').
			};
		};

		/**
A
Alex Dima 已提交
1746 1747
		 * **Deprecated**.
		 * @deprecated
E
Erich Gamma 已提交
1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
		 */
		__characterPairSupport?: {
			autoClosingPairs: {
				open: string;
				close: string;
				notIn?: string[];
			}[];
		};
	}

	export interface WorkspaceConfiguration {

		/**
		 * @param section configuration name, supports _dotted_ names
		 * @return the value `section` denotes or the default
		 */
		get<T>(section: string, defaultValue?: T): T;

		/**
		 * @param section configuration name, supports _dotted_ names
		 * @return `true` iff the section doesn't resolve to `undefined`
		 */
		has(section: string): boolean;

		/**
		 * Readable dictionary that backs this configuration.
		 * @readonly
		 */
		[key: string]: any;
	}

J
Johannes Rieken 已提交
1779 1780 1781 1782 1783
	/**
	 * Represents a location inside a resource, such as a line
	 * inside a text file.
	 */
	export class Location {
J
Johannes Rieken 已提交
1784 1785 1786 1787

		/**
		 * The resource identifier of this location.
		 */
J
Johannes Rieken 已提交
1788
		uri: Uri;
J
Johannes Rieken 已提交
1789 1790 1791 1792

		/**
		 * The document range of this locations.
		 */
J
Johannes Rieken 已提交
1793
		range: Range;
J
Johannes Rieken 已提交
1794 1795 1796 1797 1798 1799 1800 1801

		/**
		 * Creates a new location object.
		 *
		 * @param uri The resource identifier.
		 * @param rangeOrPosition The range or position. Positions will be converted to an empty range.
		 */
		constructor(uri: Uri, rangeOrPosition: Range | Position);
J
Johannes Rieken 已提交
1802 1803
	}

E
Erich Gamma 已提交
1804 1805 1806 1807
	/**
	 * Represents the severity of diagnostics.
	 */
	export enum DiagnosticSeverity {
J
Johannes Rieken 已提交
1808 1809 1810 1811 1812 1813 1814 1815 1816

		/**
		 * Something not allowed by the rules of a languages or other means.
		 */
		Error = 0,

		/**
		 * Something suspicious but allowed.
		 */
E
Erich Gamma 已提交
1817
		Warning = 1,
J
Johannes Rieken 已提交
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828

		/**
		 * Something to inform about but not a problem.
		 */
		Information = 2,

		/**
		 * Something to hint to a better way of doing something, like proposing
		 * a refactoring.
		 */
		Hint = 3
E
Erich Gamma 已提交
1829 1830 1831
	}

	/**
J
Johannes Rieken 已提交
1832 1833
	 * Represents a diagnostic, such as a compiler error or warning. Diagnostic objects
	 * are only valid in the scope of a file.
E
Erich Gamma 已提交
1834
	 */
J
Johannes Rieken 已提交
1835 1836 1837 1838 1839
	export class Diagnostic {

		/**
		 * The range to which this diagnostic applies.
		 */
E
Erich Gamma 已提交
1840
		range: Range;
J
Johannes Rieken 已提交
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866

		/**
		 * The human-readable message.
		 */
		message: string;

		/**
		 * The severity, default is [error](#DiagnosticSeverity.Error).
		 */
		severity: DiagnosticSeverity;

		/**
		 * A code or identifier for this diagnostics. Will not surfaced
		 * to the user, but should be used for later processing, e.g when
		 * providing [code actions](#CodeActionContext).
		 */
		code: string | number;

		/**
		 * Creates a new diagnostic object
		 *
		 * @param range The range to which this diagnostic applies.
		 * @param message The human-readable message.
		 * @param severity The severity, default is [error](#DiagnosticSeverity.Error)
		 */
		constructor(range: Range, message: string, severity?: DiagnosticSeverity);
E
Erich Gamma 已提交
1867 1868
	}

J
Johannes Rieken 已提交
1869 1870 1871 1872 1873 1874 1875 1876
	/**
	 * A diagnostics collection is a container that manages a set of
	 * [diagnostics](#Diagnostic). Diagnostics are always scopes to a
	 * a diagnostics collection and a resource.
	 *
	 * To get an instance of a `DiagnosticCollection` use
	 * [createDiagnosticCollection](#languages.createDiagnosticCollection).
	 */
E
Erich Gamma 已提交
1877 1878 1879
	export interface DiagnosticCollection {

		/**
J
Johannes Rieken 已提交
1880 1881 1882
		 * The name of this diagnostic collection, for instance `typescript`. Every diagnostic
		 * from this collection will be associated with this name. Also, the task framework uses this
		 * name when defining [problem matchers](https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher).
E
Erich Gamma 已提交
1883 1884 1885 1886 1887
		 */
		name: string;

		/**
		 * Assign diagnostics for given resource. Will replace
J
Johannes Rieken 已提交
1888 1889 1890 1891
		 * existing diagnostics for that resource.
		 *
		 * @param uri A resource identifier.
		 * @param diagnostics Array of diagnostics or `undefined`
E
Erich Gamma 已提交
1892 1893 1894 1895 1896
		 */
		set(uri: Uri, diagnostics: Diagnostic[]): void;

		/**
		 * Remove all diagnostics from this collection that belong
J
Johannes Rieken 已提交
1897 1898 1899
		 * to the provided `uri`. The same as `#set(uri, undefined)`.
		 *
		 * @param uri A resource identifier.
E
Erich Gamma 已提交
1900 1901 1902 1903
		 */
		delete(uri: Uri): void;

		/**
J
Johannes Rieken 已提交
1904 1905 1906
		 * Replace all entries in this collection
		 *
		 * @param entries An array of tuples, like [[file1, [d1, d2]], [file2, [d3, d4, d5]]], or `undefined`
E
Erich Gamma 已提交
1907 1908 1909 1910 1911 1912 1913 1914 1915
		 */
		set(entries: [Uri, Diagnostic[]][]): void;

		/**
		 * Remove all diagnostics from this collection. The same
		 * as calling `#set(undefined)`;
		 */
		clear(): void;

J
Johannes Rieken 已提交
1916 1917 1918 1919
		/**
		 * Dispose and free associated resources. Calls
		 * [clear](#DiagnosticCollection.clear).
		 */
E
Erich Gamma 已提交
1920 1921 1922
		dispose(): void;
	}

J
Johannes Rieken 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932
	/**
	 * Denotes a column in the VS Code window. Columns used to show editors
	 * side by side.
	 */
	export enum ViewColumn {
		One = 1,
		Two = 2,
		Three = 3
	}

E
Erich Gamma 已提交
1933
	/**
J
Johannes Rieken 已提交
1934 1935 1936 1937
	 * An output channel is a container for readonly textual information.
	 *
	 * To get an instance of an `OutputChannel` use
	 * [createOutputChannel](#window.createOutputChannel).
E
Erich Gamma 已提交
1938
	 */
J
Johannes Rieken 已提交
1939
	export interface OutputChannel {
E
Erich Gamma 已提交
1940

J
Johannes Rieken 已提交
1941 1942 1943 1944 1945
		/**
		 * The human-readable name of this output channel.
		 * @readonly
		 */
		name: string;
E
Erich Gamma 已提交
1946 1947

		/**
J
Johannes Rieken 已提交
1948
		 * Append the given value to the channel.
E
Erich Gamma 已提交
1949
		 *
J
Johannes Rieken 已提交
1950
		 * @param value A string, falsy values will not be printed.
E
Erich Gamma 已提交
1951
		 */
J
Johannes Rieken 已提交
1952
		append(value: string): void;
E
Erich Gamma 已提交
1953 1954 1955


		/**
J
Johannes Rieken 已提交
1956 1957
		 * Append the given value and a line feed character
		 * to the channel.
E
Erich Gamma 已提交
1958
		 *
J
Johannes Rieken 已提交
1959
		 * @param value A string, falsy values will be printed.
E
Erich Gamma 已提交
1960 1961 1962
		 */
		appendLine(value: string): void;

J
Johannes Rieken 已提交
1963 1964 1965
		/**
		 * Removes all output from the channel.
		 */
E
Erich Gamma 已提交
1966 1967
		clear(): void;

J
Johannes Rieken 已提交
1968 1969 1970 1971 1972
		/**
		 * Reveal this channel in the UI.
		 *
		 * @column The column in which to show the channel, default in [one](#ViewColumn.One).
		 */
E
Erich Gamma 已提交
1973 1974
		show(column?: ViewColumn): void;

J
Johannes Rieken 已提交
1975 1976 1977
		/**
		 * Hide this channel from the UI.
		 */
E
Erich Gamma 已提交
1978 1979
		hide(): void;

J
Johannes Rieken 已提交
1980 1981 1982
		/**
		 * Dispose and free associated resources.
		 */
E
Erich Gamma 已提交
1983 1984 1985 1986
		dispose(): void;
	}

	/**
J
Johannes Rieken 已提交
1987
	 * Represents the alignment of status bar items.
E
Erich Gamma 已提交
1988 1989
	 */
	export enum StatusBarAlignment {
J
Johannes Rieken 已提交
1990 1991 1992 1993

		/**
		 * Aligned to the left side.
		 */
E
Erich Gamma 已提交
1994
		Left,
J
Johannes Rieken 已提交
1995 1996 1997 1998

		/**
		 * Aligned to the right side.
		 */
E
Erich Gamma 已提交
1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
		Right
	}

	/**
	 * A status bar item is a status bar contribution that can
	 * show text and icons and run a command on click.
	 */
	export interface StatusBarItem {

		/**
J
Johannes Rieken 已提交
2009 2010
		 * The alignment of this item.
		 *
E
Erich Gamma 已提交
2011 2012 2013 2014 2015
		 * @readonly
		 */
		alignment: StatusBarAlignment;

		/**
J
Johannes Rieken 已提交
2016 2017 2018
		 * The priority of this item. Higher value means the item should
		 * be shown more to the left.
		 *
E
Erich Gamma 已提交
2019 2020 2021 2022 2023
		 * @readonly
		 */
		priority: number;

		/**
J
Johannes Rieken 已提交
2024 2025 2026 2027 2028 2029 2030
		 * The text to show for the entry. You can embed icons in the text by leveraging the syntax:
		 *
		 * `My text $(icon name) contains icons like $(icon name) this one.`
		 *
		 * Where the icon name is taken from the (octicon)[https://octicons.github.com/] icon set, e.g.
		 * light-bulb, thumbsup, zap etc.
		 */
E
Erich Gamma 已提交
2031 2032 2033
		text: string;

		/**
J
Johannes Rieken 已提交
2034 2035
		 * The tooltip text when you hover over this entry.
		 */
E
Erich Gamma 已提交
2036 2037 2038
		tooltip: string;

		/**
J
Johannes Rieken 已提交
2039 2040
		 * The foreground color for this entry.
		 */
E
Erich Gamma 已提交
2041 2042 2043
		color: string;

		/**
J
Johannes Rieken 已提交
2044 2045 2046
		 * The identifier of a command to run on click. The command must be
		 * [known](#commands.getCommands).
		 */
E
Erich Gamma 已提交
2047 2048 2049 2050 2051 2052 2053 2054
		command: string;

		/**
		 * Shows the entry in the status bar.
		 */
		show(): void;

		/**
J
Johannes Rieken 已提交
2055
		 * Hide the entry in the status bar.
E
Erich Gamma 已提交
2056 2057 2058 2059
		 */
		hide(): void;

		/**
J
Johannes Rieken 已提交
2060 2061
		 * Dispose and free associated resources. Call
		 * [hide](#StatusBarItem.hide).
E
Erich Gamma 已提交
2062 2063 2064 2065
		 */
		dispose(): void;
	}

J
Johannes Rieken 已提交
2066 2067 2068
	/**
	 * Represents an extension.
	 *
A
Alex Dima 已提交
2069
	 * To get an instance of an `Extension` use [getExtension](#extensions.getExtension).
J
Johannes Rieken 已提交
2070
	 */
E
Erich Gamma 已提交
2071
	export interface Extension<T> {
J
Johannes Rieken 已提交
2072

E
Erich Gamma 已提交
2073
		/**
J
Johannes Rieken 已提交
2074
		 * The canonical extension identifier in the form of: `publisher.name`.
E
Erich Gamma 已提交
2075 2076 2077 2078
		 */
		id: string;

		/**
J
Johannes Rieken 已提交
2079
		 * The absolute file path of the directory containing this extension.
E
Erich Gamma 已提交
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
		 */
		extensionPath: string;

		/**
		 * Returns if the extension has been activated.
		 */
		isActive: boolean;

		/**
		 * The parsed contents of the extension's package.json.
		 */
		packageJSON: any;

		/**
A
Alex Dima 已提交
2094
		 * The public API exported by this extension. It is an invalid action
J
Johannes Rieken 已提交
2095
		 * to access this field before this extension has been activated.
E
Erich Gamma 已提交
2096 2097 2098 2099 2100
		 */
		exports: T;

		/**
		 * Activates this extension and returns its public API.
J
Johannes Rieken 已提交
2101 2102
		 *
		 * @return A promise that resolve when this extension has been activated.
E
Erich Gamma 已提交
2103 2104 2105 2106
		 */
		activate(): Thenable<T>;
	}

J
Johannes Rieken 已提交
2107 2108 2109 2110 2111 2112 2113
	/**
	 * An extension context is a collection utilities private to an
	 * extensions.
	 *
	 * An instance of an `ExtensionContext` is provided as first
	 * parameter to the `activate`-call of an extension.
	 */
E
Erich Gamma 已提交
2114 2115 2116 2117
	export interface ExtensionContext {

		/**
		 * An array to which disposables can be added. When this
J
Johannes Rieken 已提交
2118
		 * extension is deactivated the disposables will be disposed.
E
Erich Gamma 已提交
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134
		 */
		subscriptions: { dispose(): any }[];

		/**
		 * A memento object that stores state in the context
		 * of the currently opened [workspace](#workspace.path).
		 */
		workspaceState: Memento;

		/**
		 * A memento object that stores state independent
		 * of the current opened [workspace](#workspace.path)
		 */
		globalState: Memento;

		/**
J
Johannes Rieken 已提交
2135
		 * The absolute file path of the directory containing the extension.
E
Erich Gamma 已提交
2136 2137 2138 2139
		 */
		extensionPath: string;

		/**
A
Alex Dima 已提交
2140 2141 2142 2143
		 * Get the absolute path of a resource contained in the extension.
		 *
		 * @param relativePath A relative path to a resource contained in the extension.
		 * @return The absolute path of the resource.
E
Erich Gamma 已提交
2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295
		 */
		asAbsolutePath(relativePath: string): string;
	}

	/**
	 * A memento represents a storage utility. It can store and retrieve
	 * values.
	 */
	export interface Memento {

		/**
		 * Return value
		 * @return The store value or undefined or the defaultValue
		 */
		get<T>(key: string, defaultValue?: T): T;

		/**
		 * Store a value. The value must be JSON-stringfyable.
		 */
		update(key: string, value: any): Thenable<void>;
	}

	/**
	 * Namespace for commanding
	 */
	export namespace commands {

		/**
		 * Registers a command that can be invoked via a keyboard shortcut,
		 * an menu item, an action, or directly.
		 *
		 * @param command - The unique identifier of this command
		 * @param callback - The command callback
		 * @param thisArgs - (optional) The this context used when invoking {{callback}}
		 * @return Disposable which unregisters this command on disposal
		 */
		export function registerCommand(command: string, callback: (...args: any[]) => any, thisArg?: any): Disposable;

		/**
		 * Register a text editor command that will make edits.
		 * It can be invoked via a keyboard shortcut, a menu item, an action, or directly.
		 *
		 * @param command - The unique identifier of this command
		 * @param callback - The command callback. The {{textEditor}} and {{edit}} passed in are available only for the duration of the callback.
		 * @param thisArgs - (optional) The `this` context used when invoking {{callback}}
		 * @return Disposable which unregisters this command on disposal
		 */
		export function registerTextEditorCommand(command: string, callback: (textEditor: TextEditor, edit: TextEditorEdit) => void, thisArg?: any): Disposable;

		/**
		 * Executes a command
		 *
		 * @param command - Identifier of the command to execute
		 * @param ...rest - Parameter passed to the command function
		 * @return
		 */
		export function executeCommand<T>(command: string, ...rest: any[]): Thenable<T>;

		/**
		 * Retrieve the list of all available commands.
		 *
		 * @return Thenable that resolves to a list of command ids.
		 */
		export function getCommands(): Thenable<string[]>;
	}

	/**
	 * The window namespace contains all functions to interact with
	 * the visual window of VS Code.
	 */
	export namespace window {

		/**
		 * The currently active editor or undefined. The active editor is the one
		 * that currenty has focus or, when none has focus, the one that has changed
		 * input most recently.
		 */
		export let activeTextEditor: TextEditor;

		/**
		 * The currently visible editors or empty array.
		 */
		export let visibleTextEditors: TextEditor[];

		/**
		 * An [event](#Event) which fires when the [active](#window.activeTextEditor)
		 * has changed.
		 */
		export const onDidChangeActiveTextEditor: Event<TextEditor>;

		/**
		 *  An [event](#Event) which fires when the selection in an editor has changed.
		 */
		export const onDidChangeTextEditorSelection: Event<TextEditorSelectionChangeEvent>;

		/**
		 * An [event](#Event) which fires when the options of an editor have changed.
		 */
		export const onDidChangeTextEditorOptions: Event<TextEditorOptionsChangeEvent>;

		/**
		 * Show the given document in a text editor. A [column](#ViewColumn) can be provided
		 * to control where the editor is being shown. Might change the [active editor](#window.activeTextEditor).
		 *
		 * @param document A text document to be shown.
		 * @param column A view column in which the editor should be shown. The default is the [one](#ViewColumn.One), other values
		 * are adjusted to be __Min(column, columnCount + 1)__.
		 * @return A promise that resolves to an [editor](#TextEditor).
		 */
		export function showTextDocument(document: TextDocument, column?: ViewColumn): Thenable<TextEditor>;

		/**
		 * Create a `TextEditorDecorationType` that can be used to add decorations to text editors.
		 */
		export function createTextEditorDecorationType(options: DecorationRenderOptions): TextEditorDecorationType;

		/**
		 * Show an information message to users. Optionally provide an array of items which will be presented as
		 * clickable buttons.
		 *
		 * @return a Promise that resolves when the message has been disposed. Returns the user-selected item if applicable.
		 */
		export function showInformationMessage(message: string, ...items: string[]): Thenable<string>;

		/**
		 * @see [showInformationMessage](#window.showInformationMessage)
		 */
		export function showInformationMessage<T extends MessageItem>(message: string, ...items: T[]): Thenable<T>;

		/**
		 * @see [showInformationMessage](#window.showInformationMessage)
		 */
		export function showWarningMessage(message: string, ...items: string[]): Thenable<string>;

		/**
		 * @see [showInformationMessage](#window.showInformationMessage)
		 */
		export function showWarningMessage<T extends MessageItem>(message: string, ...items: T[]): Thenable<T>;

		/**
		 * @see [showInformationMessage](#window.showInformationMessage)
		 */
		export function showErrorMessage(message: string, ...items: string[]): Thenable<string>;

		/**
		 * @see [showInformationMessage](#window.showInformationMessage)
		 */
		export function showErrorMessage<T extends MessageItem>(message: string, ...items: T[]): Thenable<T>;

		/**
		 * Shows a selection list.
		 *
J
Johannes Rieken 已提交
2296 2297 2298
		 * @param items An array of strings, or a promise that resolves to an array of strings.
		 * @param options Configures the behavior of the selection list.
		 * @return A promise that resolves to the selection or undefined.
E
Erich Gamma 已提交
2299 2300 2301 2302 2303 2304
		 */
		export function showQuickPick(items: string[] | Thenable<string[]>, options?: QuickPickOptions): Thenable<string>;

		/**
		 * Shows a selection list.
		 *
J
Johannes Rieken 已提交
2305 2306 2307
		 * @param items An array of items, or a promise that resolves to an array of items.
		 * @param options Configures the behavior of the selection list.
		 * @return A promise that resolves to the selected item or undefined.
E
Erich Gamma 已提交
2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
		 */
		export function showQuickPick<T extends QuickPickItem>(items: T[] | Thenable<T[]>, options?: QuickPickOptions): Thenable<T>;

		/**
		 * Opens an input box to ask the user for input.
		 *
		 * The returned value will be undefined if the input box was canceled (e.g. pressing ESC) and otherwise will
		 * have the user typed string or an empty string if the user did not type anything but dismissed the input
		 * box with OK.
		 *
J
Johannes Rieken 已提交
2318 2319
		 * @param options Configures the behavior of the input box.
		 * @return A promise that resolves to a string the user provided or to `undefined` in case of dismissal.
E
Erich Gamma 已提交
2320 2321 2322 2323
		 */
		export function showInputBox(options?: InputBoxOptions): Thenable<string>;

		/**
J
Johannes Rieken 已提交
2324 2325 2326
		 * Create a new [output channel](#OutputChannel) with the given name.
		 *
		 * @param name Human-readable string which we will used to represent the channel in the UI.
E
Erich Gamma 已提交
2327 2328 2329 2330
		 */
		export function createOutputChannel(name: string): OutputChannel;

		/**
J
Johannes Rieken 已提交
2331
		 * Set a message to the status bar. This is a short hand for the more powerfull
E
Erich Gamma 已提交
2332
		 * status bar [items](#window.createStatusBarItem).
J
Johannes Rieken 已提交
2333
		 *
E
Erich Gamma 已提交
2334
		 * @param text The message to show, support icons subtitution as in status bar [items](#StatusBarItem.text).
J
Johannes Rieken 已提交
2335
		 * @return A disposable which hides the status bar message.
E
Erich Gamma 已提交
2336 2337 2338 2339 2340
		 */
		export function setStatusBarMessage(text: string): Disposable;

		/**
		 * @see [[#window.setStatusBarMessage]]
J
Johannes Rieken 已提交
2341
		 *
E
Erich Gamma 已提交
2342
		 * @param hideAfterTimeout Timeout in milliseconds after which the message will be disposed.
J
Johannes Rieken 已提交
2343
		 * @return A disposable which hides the status bar message.
E
Erich Gamma 已提交
2344 2345 2346 2347 2348
		 */
		export function setStatusBarMessage(text: string, hideAfterTimeout: number): Disposable;

		/**
		 * @see [[#window.setStatusBarMessage]]
J
Johannes Rieken 已提交
2349
		 *
E
Erich Gamma 已提交
2350
		 * @param hideWhenDone Thenable on which completion (resolve or reject) the message will be disposed.
J
Johannes Rieken 已提交
2351
		 * @return A disposable which hides the status bar message.
E
Erich Gamma 已提交
2352 2353 2354 2355
		 */
		export function setStatusBarMessage(text: string, hideWhenDone: Thenable<any>): Disposable;

		/**
J
Johannes Rieken 已提交
2356 2357 2358 2359 2360 2361
		 * Creates a status bar [item](#StatusBarItem).
		 *
		 * @param position The alignment of the item.
		 * @param priority The priority of the item. Higher value means the item should be shown more to the left.
		 * @return A new status bar item.
		 */
E
Erich Gamma 已提交
2362 2363 2364 2365
		export function createStatusBarItem(alignment?: StatusBarAlignment, priority?: number): StatusBarItem;
	}

	/**
A
Alex Dima 已提交
2366
	 * An event describing an individual change in the text of a [document](#TextDocument).
E
Erich Gamma 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
	 */
	export interface TextDocumentContentChangeEvent {
		/**
		 * The range that got replaced.
		 */
		range: Range;
		/**
		 * The length of the range that got replaced.
		 */
		rangeLength: number;
		/**
		 * The new text for the range.
		 */
		text: string;
	}

	/**
A
Alex Dima 已提交
2384
	 * An event describing a transactional [document](#TextDocument) change.
E
Erich Gamma 已提交
2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435
	 */
	export interface TextDocumentChangeEvent {

		/**
		 * The affected document.
		 */
		document: TextDocument;

		/**
		 * An array of content changes.
		 */
		contentChanges: TextDocumentContentChangeEvent[];
	}

	/**
	 * The workspace namespace contains functions that operate on the currently opened
	 * folder.
	 */
	export namespace workspace {

		/**
		 * Creates a file system watcher. A glob pattern that filters the
		 * file events must be provided. Optionally, flags to ignore certain
		 * kind of events can be provided.
		 *
		 * @param globPattern - A glob pattern that is applied to the names of created, changed, and deleted files.
		 * @param ignoreCreateEvents - Ignore when files have been created.
		 * @param ignoreChangeEvents - Ignore when files have been changed.
		 * @param ignoreDeleteEvents - Ignore when files have been deleted.
		 */
		export function createFileSystemWatcher(globPattern: string, ignoreCreateEvents?: boolean, ignoreChangeEvents?: boolean, ignoreDeleteEvents?: boolean): FileSystemWatcher;

		/**
		 * The folder that is open in VS Code if applicable
		 */
		export let rootPath: string;

		/**
		 * @return a path relative to the [root](#rootPath) of the workspace.
		 */
		export function asRelativePath(pathOrUri: string | Uri): string;

		// TODO@api - justify this being here
		export function findFiles(include: string, exclude: string, maxResults?: number): Thenable<Uri[]>;

		/**
		 * Save all dirty files
		 */
		export function saveAll(includeUntitled?: boolean): Thenable<boolean>;

		/**
A
Alex Dima 已提交
2436
		 * Apply the provided [workspace edit](#WorkspaceEdit).
E
Erich Gamma 已提交
2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
		 */
		export function applyEdit(edit: WorkspaceEdit): Thenable<boolean>;

		/**
		 * All text documents currently known to the system.
		 */
		export let textDocuments: TextDocument[];

		/**
		 * Opens the denoted document from disk. Will return early if the
		 * document is already open, otherwise the document is loaded and the
		 * [open document](#workspace.onDidOpenTextDocument)-event fires.
		 *
		 * The document to open is denoted by the [uri](#Uri). Two schemes are supported:
		 * * **file** a file on disk, will be rejected if the file does not exist or cannot be loaded, e.g. 'file:///Users/frodo/r.ini'.
		 * * **untitled** a new file that should be saved on disk, e.g. 'untitled:/Users/frodo/new.js'. The language will be derived from the file name.
		 * Uris with other schemes will make this method returned a rejected promise.
		 *
		 * @param uri Identifies the resource to open.
		 * @return A promise that resolves to a [document](#TextDocument).
		 */
		export function openTextDocument(uri: Uri): Thenable<TextDocument>;

		/**
		 * Like `openTextDocument(Uri.file(fileName))`
		 */
		export function openTextDocument(fileName: string): Thenable<TextDocument>;

A
Alex Dima 已提交
2465 2466 2467
		/**
		 * An event that is emitted when a [text document](#TextDocument) is created.
		 */
E
Erich Gamma 已提交
2468 2469
		export const onDidOpenTextDocument: Event<TextDocument>;

A
Alex Dima 已提交
2470 2471 2472
		/**
		 * An event that is emitted when a [text document](#TextDocument) is disposed.
		 */
E
Erich Gamma 已提交
2473 2474
		export const onDidCloseTextDocument: Event<TextDocument>;

A
Alex Dima 已提交
2475 2476 2477
		/**
		 * An event that is emitted when a [text document](#TextDocument) is changed.
		 */
E
Erich Gamma 已提交
2478 2479
		export const onDidChangeTextDocument: Event<TextDocumentChangeEvent>;

A
Alex Dima 已提交
2480 2481 2482
		/**
		 * An event that is emitted when a [text document](#TextDocument) is saved to disk.
		 */
E
Erich Gamma 已提交
2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502
		export const onDidSaveTextDocument: Event<TextDocument>;

		/**
		 *
		 */
		export function getConfiguration(section?: string): WorkspaceConfiguration;

		// TODO: send out the new config?
		export const onDidChangeConfiguration: Event<void>;
	}

	export namespace languages {

		/**
		 * Return the identifiers of all known languages.
		 * @return Promise resolving to an array of identifier strings.
		 */
		export function getLanguages(): Thenable<string[]>;

		/**
J
Johannes Rieken 已提交
2503
		 * Compute the match between a document [selector](#DocumentSelector) and a document. Values
E
Erich Gamma 已提交
2504
		 * greater zero mean the selector matches the document.
J
Johannes Rieken 已提交
2505 2506 2507 2508
		 *
		 * @param selector A document selector.
		 * @param document A text document.
		 * @return Value > 0 when the selector matches, 0 when the selector does not match.
E
Erich Gamma 已提交
2509 2510 2511 2512
		 */
		export function match(selector: DocumentSelector, document: TextDocument): number;

		/**
J
Johannes Rieken 已提交
2513 2514 2515 2516
		 * Create a diagnostics collections.
		 *
		 * @param name The [name](#DiagnosticCollection.name) of the collection.
		 * @return A new diagnostic collection.
E
Erich Gamma 已提交
2517 2518 2519 2520 2521
		 */
		export function createDiagnosticCollection(name?: string): DiagnosticCollection;

		/**
		 *
J
Johannes Rieken 已提交
2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A completion provider.
		 * @param triggerCharacters Trigger completion when the user types one of the characters, like `.` or `:`.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
		 */
		export function registerCompletionItemProvider(selector: DocumentSelector, provider: CompletionItemProvider, ...triggerCharacters: string[]): Disposable;

		/**
		 *
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * param provider A code action provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2534 2535 2536 2537 2538
		 */
		export function registerCodeActionsProvider(language: DocumentSelector, provider: CodeActionProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2539 2540 2541
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A code lens provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2542 2543 2544 2545 2546
		 */
		export function registerCodeLensProvider(language: DocumentSelector, provider: CodeLensProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2547 2548 2549
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A definition provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2550 2551 2552 2553 2554
		 */
		export function registerDefinitionProvider(selector: DocumentSelector, provider: DefinitionProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2555 2556 2557
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A hover provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2558 2559 2560 2561 2562
		 */
		export function registerHoverProvider(selector: DocumentSelector, provider: HoverProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2563 2564 2565
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A document highlight provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2566 2567 2568 2569 2570
		 */
		export function registerDocumentHighlightProvider(selector: DocumentSelector, provider: DocumentHighlightProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2571 2572 2573
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A document symbol provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2574 2575 2576 2577 2578
		 */
		export function registerDocumentSymbolProvider(selector: DocumentSelector, provider: DocumentSymbolProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2579 2580
		 * @param provider A workspace symbol provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2581 2582 2583 2584 2585
		 */
		export function registerWorkspaceSymbolProvider(provider: WorkspaceSymbolProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2586 2587 2588
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A reference provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2589 2590 2591 2592 2593
		 */
		export function registerReferenceProvider(selector: DocumentSelector, provider: ReferenceProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2594 2595 2596
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A rename provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2597 2598 2599 2600 2601
		 */
		export function registerRenameProvider(selector: DocumentSelector, provider: RenameProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2602 2603 2604
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A document formatting edit provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2605 2606 2607 2608 2609
		 */
		export function registerDocumentFormattingEditProvider(selector: DocumentSelector, provider: DocumentFormattingEditProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2610 2611 2612
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A document range formatting edit provider.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2613 2614 2615 2616 2617
		 */
		export function registerDocumentRangeFormattingEditProvider(selector: DocumentSelector, provider: DocumentRangeFormattingEditProvider): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2618 2619 2620 2621 2622
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider An on type formatting edit provider.
		 * @param firstTriggerCharacter A character on which formatting should be triggered, like `}`.
		 * param moreTriggerCharacter More trigger characters.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2623 2624 2625 2626 2627
		 */
		export function registerOnTypeFormattingEditProvider(selector: DocumentSelector, provider: OnTypeFormattingEditProvider, firstTriggerCharacter: string, ...moreTriggerCharacter: string[]): Disposable;

		/**
		 *
J
Johannes Rieken 已提交
2628 2629 2630 2631
		 * @param selector A selector that defines the documents this provider is applicable to.
		 * @param provider A signature help provider.
		 * @param triggerCharacters Trigger signature help when the user types one of the characters, like `,` or `(`.
		 * @return A [disposable](#Disposable) that unregisters this provider when being disposed.
E
Erich Gamma 已提交
2632 2633 2634 2635 2636 2637 2638 2639 2640
		 */
		export function registerSignatureHelpProvider(selector: DocumentSelector, provider: SignatureHelpProvider, ...triggerCharacters: string[]): Disposable;

		/**
		 *
		 */
		export function setLanguageConfiguration(language: string, configuration: LanguageConfiguration): Disposable;
	}

J
Johannes Rieken 已提交
2641 2642 2643
	/**
	 * Namespace to retrieve installed extensions.
	 */
E
Erich Gamma 已提交
2644 2645
	export namespace extensions {

J
Johannes Rieken 已提交
2646 2647 2648 2649 2650 2651
		/**
		 * Get an extension by id.
		 *
		 * @param extensionId An extension identifier in the form of: `publisher.name`.
		 * @return An extension or `undefined`.
		 */
E
Erich Gamma 已提交
2652 2653
		export function getExtension(extensionId: string): Extension<any>;

J
Johannes Rieken 已提交
2654 2655 2656
		/**
		 * @see [[extensions.getExtension]]
		 */
E
Erich Gamma 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665
		export function getExtension<T>(extensionId: string): Extension<T>;

		/**
		 * All extensions currently known to the system.
		 */
		export let all: Extension<any>[];
	}
}

J
Johannes Rieken 已提交
2666 2667 2668 2669 2670 2671 2672 2673
// TS 1.6 & node_module
export = vscode;

// when used for JS*
// declare module 'vscode' {
// 	export = vscode;
// }

E
Erich Gamma 已提交
2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776
/**
 * Thenable is a common denominator between ES6 promises, Q, jquery.Deferred, WinJS.Promise,
 * and others. This API makes no assumption about what promise libary is being used which
 * enables reusing existing code without migrating to a specific promise implementation. Still,
 * we recommand the use of native promises which are available in VS Code.
 */
interface Thenable<R> {
	/**
	* Attaches callbacks for the resolution and/or rejection of the Promise.
	* @param onfulfilled The callback to execute when the Promise is resolved.
	* @param onrejected The callback to execute when the Promise is rejected.
	* @returns A Promise for the completion of which ever callback is executed.
	*/
	then<TResult>(onfulfilled?: (value: R) => TResult | Thenable<TResult>, onrejected?: (reason: any) => TResult | Thenable<TResult>): Thenable<TResult>;
	then<TResult>(onfulfilled?: (value: R) => TResult | Thenable<TResult>, onrejected?: (reason: any) => void): Thenable<TResult>;
}

// ---- ES6 promise ------------------------------------------------------

/**
 * Represents the completion of an asynchronous operation
 */
interface Promise<T> extends Thenable<T> {
	/**
	* Attaches callbacks for the resolution and/or rejection of the Promise.
	* @param onfulfilled The callback to execute when the Promise is resolved.
	* @param onrejected The callback to execute when the Promise is rejected.
	* @returns A Promise for the completion of which ever callback is executed.
	*/
	then<TResult>(onfulfilled?: (value: T) => TResult | Thenable<TResult>, onrejected?: (reason: any) => TResult | Thenable<TResult>): Promise<TResult>;
	then<TResult>(onfulfilled?: (value: T) => TResult | Thenable<TResult>, onrejected?: (reason: any) => void): Promise<TResult>;

	/**
	 * Attaches a callback for only the rejection of the Promise.
	 * @param onrejected The callback to execute when the Promise is rejected.
	 * @returns A Promise for the completion of the callback.
	 */
	catch(onrejected?: (reason: any) => T | Thenable<T>): Promise<T>;

	// [Symbol.toStringTag]: string;
}

interface PromiseConstructor {
	// /**
	//   * A reference to the prototype.
	//   */
	// prototype: Promise<any>;

	/**
	 * Creates a new Promise.
	 * @param executor A callback used to initialize the promise. This callback is passed two arguments:
	 * a resolve callback used resolve the promise with a value or the result of another promise,
	 * and a reject callback used to reject the promise with a provided reason or error.
	 */
	new <T>(executor: (resolve: (value?: T | Thenable<T>) => void, reject: (reason?: any) => void) => void): Promise<T>;

	/**
	 * Creates a Promise that is resolved with an array of results when all of the provided Promises
	 * resolve, or rejected when any Promise is rejected.
	 * @param values An array of Promises.
	 * @returns A new Promise.
	 */
	all<T>(values: Array<T | Thenable<T>>): Promise<T[]>;

	/**
	 * Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
	 * or rejected.
	 * @param values An array of Promises.
	 * @returns A new Promise.
	 */
	race<T>(values: Array<T | Thenable<T>>): Promise<T>;

	/**
	 * Creates a new rejected promise for the provided reason.
	 * @param reason The reason the promise was rejected.
	 * @returns A new rejected Promise.
	 */
	reject(reason: any): Promise<void>;

	/**
	 * Creates a new rejected promise for the provided reason.
	 * @param reason The reason the promise was rejected.
	 * @returns A new rejected Promise.
	 */
	reject<T>(reason: any): Promise<T>;

	/**
	  * Creates a new resolved promise for the provided value.
	  * @param value A promise.
	  * @returns A promise whose internal state matches the provided promise.
	  */
	resolve<T>(value: T | Thenable<T>): Promise<T>;

	/**
	 * Creates a new resolved promise .
	 * @returns A resolved promise.
	 */
	resolve(): Promise<void>;

	// [Symbol.species]: Function;
}

declare var Promise: PromiseConstructor;