Skip to content

Commit df4d9ce

Browse files
authored
Merge pull request microsoft#186187 from microsoft/aamunger/restoreSetting
remove setting with no effect
2 parents 3e67095 + f907729 commit df4d9ce

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -791,11 +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.")
799794
}
800795
}
801796
});

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)