File tree Expand file tree Collapse file tree
src/client/jupyter/display Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import {TextDocumentContentProvider} from './resultView';
66import { CellOptions } from './cellOptions' ;
77import { JupyterCodeLensProvider } from '../editorIntegration/codeLensProvider' ;
88import { Server } from './server' ;
9+ import { PythonSettings } from '../../common/configSettings' ;
910
1011const jupyterSchema = 'jupyter-result-viewer' ;
1112const previewUri = vscode . Uri . parse ( jupyterSchema + '://authority/jupyter' ) ;
@@ -32,7 +33,7 @@ export class JupyterDisplay extends vscode.Disposable {
3233 }
3334
3435 private displayed = false ;
35- private appendResults = false ;
36+ private appendResults = PythonSettings . getInstance ( ) . jupyter . appendResults ;
3637 public showResults ( result : string , data : any ) : Thenable < any > {
3738 return this . server . start ( ) . then ( port => {
3839 this . previewWindow . ServerPort = port ;
You can’t perform that action at this time.
0 commit comments