Path: blob/main/src/vs/workbench/contrib/interactive/browser/interactiveCommon.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { RawContextKey } from '../../../../platform/contextkey/common/contextkey.js';67export const INTERACTIVE_INPUT_CURSOR_BOUNDARY = new RawContextKey<'none' | 'top' | 'bottom' | 'both'>('interactiveInputCursorAtBoundary', 'none');89export const ReplEditorSettings = {10interactiveWindowAlwaysScrollOnNewCell: 'interactiveWindow.alwaysScrollOnNewCell',11executeWithShiftEnter: 'interactiveWindow.executeWithShiftEnter',12showExecutionHint: 'interactiveWindow.showExecutionHint',13};141516