Remove terminal.integrated.experimentalBufferImpl

Part of #63688
pull/65426/head^2
Daniel Imms 2019-01-02 13:51:49 -08:00
parent 46c93b0359
commit 0841e1d78b
2 changed files with 1 additions and 7 deletions

View File

@ -380,12 +380,6 @@ configurationRegistry.registerConfiguration({
type: 'boolean',
default: true
},
'terminal.integrated.experimentalBufferImpl': {
description: nls.localize('terminal.integrated.experimentalBufferImpl', "Controls the terminal's internal buffer implementation. This setting is picked up on terminal creation and will not apply to existing terminals."),
type: 'string',
enum: ['JsArray', 'TypedArray'],
default: 'TypedArray'
},
'terminal.integrated.splitCwd': {
description: nls.localize('terminal.integrated.splitCwd', "Controls the working directory a split terminal starts with."),
type: 'string',

View File

@ -312,7 +312,7 @@ export class TerminalInstance implements ITerminalInstance {
rendererType: config.rendererType === 'auto' ? 'canvas' : config.rendererType,
// TODO: Remove this once the setting is removed upstream
experimentalCharAtlas: 'dynamic',
experimentalBufferLineImpl: config.experimentalBufferImpl
experimentalBufferLineImpl: 'TypedArray'
});
if (this._shellLaunchConfig.initialText) {
this._xterm.writeln(this._shellLaunchConfig.initialText);