Merge from vscode 817eb6b0c720a4ecbc13c020afbbebfed667aa09 (#7356)

This commit is contained in:
Anthony Dresser
2019-09-24 21:36:17 -07:00
committed by GitHub
parent a29ae4d3b9
commit 6a6048d40f
541 changed files with 7045 additions and 7287 deletions

View File

@@ -359,7 +359,7 @@ export class LanguageConfigurationFileHandler {
const schemaId = 'vscode://schemas/language-configuration';
const schema: IJSONSchema = {
allowComments: true,
allowsTrailingCommas: true,
allowTrailingCommas: true,
default: {
comments: {
blockComment: ['/*', '*/'],

View File

@@ -94,13 +94,13 @@ export function attachSuggestEnabledInputBoxStyler(widget: IThemable, themeServi
export class SuggestEnabledInput extends Widget implements IThemable {
private _onShouldFocusResults = new Emitter<void>();
private readonly _onShouldFocusResults = new Emitter<void>();
readonly onShouldFocusResults: Event<void> = this._onShouldFocusResults.event;
private _onEnter = new Emitter<void>();
private readonly _onEnter = new Emitter<void>();
readonly onEnter: Event<void> = this._onEnter.event;
private _onInputDidChange = new Emitter<string | undefined>();
private readonly _onInputDidChange = new Emitter<string | undefined>();
readonly onInputDidChange: Event<string | undefined> = this._onInputDidChange.event;
private readonly inputWidget: CodeEditorWidget;