Skip to content

Commit f907729

Browse files
committed
remove setting
1 parent aa5c6e3 commit f907729

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/vs/workbench/contrib/interactive/browser/interactive.contribution.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -791,12 +791,6 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
791791
type: 'boolean',
792792
default: true,
793793
markdownDescription: localize('interactiveWindow.alwaysScrollOnNewCell', "Automatically scroll the interactive window to show the output of the last statement executed. If this value is false, the window will only scroll if the last cell was already the one scrolled to.")
794-
},
795-
[InteractiveWindowSetting.interactiveWindowRestore]: {
796-
type: 'boolean',
797-
default: false,
798-
markdownDescription: localize('interactiveWindow.restore', "Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers."),
799-
deprecationMessage: localize('interactiveWindow.restoreDeprecation', "Restoring the editor is now built in so this setting no longer affects the behavior")
800794
}
801795
}
802796
});

src/vs/workbench/contrib/interactive/browser/interactiveCommon.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ import { RawContextKey } from 'vs/platform/contextkey/common/contextkey';
88
export const INTERACTIVE_INPUT_CURSOR_BOUNDARY = new RawContextKey<'none' | 'top' | 'bottom' | 'both'>('interactiveInputCursorAtBoundary', 'none');
99

1010
export const InteractiveWindowSetting = {
11-
interactiveWindowAlwaysScrollOnNewCell: 'interactiveWindow.alwaysScrollOnNewCell',
12-
interactiveWindowRestore: 'interactiveWindow.restore'
11+
interactiveWindowAlwaysScrollOnNewCell: 'interactiveWindow.alwaysScrollOnNewCell'
1312
};

0 commit comments

Comments
 (0)