import { RawContextKey } from '../../platform/contextkey/common/contextkey.js'; export declare namespace EditorContextKeys { const editorSimpleInput: RawContextKey; /** * A context key that is set when the editor's text has focus (cursor is blinking). * Is false when focus is in simple editor widgets (repl input, scm commit input). */ const editorTextFocus: RawContextKey; /** * A context key that is set when the editor's text or an editor's widget has focus. */ const focus: RawContextKey; /** * A context key that is set when any editor input has focus (regular editor, repl input...). */ const textInputFocus: RawContextKey; const readOnly: RawContextKey; const inDiffEditor: RawContextKey; const isEmbeddedDiffEditor: RawContextKey; const multiDiffEditorAllCollapsed: RawContextKey; const hasChanges: RawContextKey; const comparingMovedCode: RawContextKey; const accessibleDiffViewerVisible: RawContextKey; const diffEditorRenderSideBySideInlineBreakpointReached: RawContextKey; const diffEditorInlineMode: RawContextKey; const diffEditorOriginalWritable: RawContextKey; const diffEditorModifiedWritable: RawContextKey; const diffEditorOriginalUri: RawContextKey; const diffEditorModifiedUri: RawContextKey; const columnSelection: RawContextKey; const writable: import("../../platform/contextkey/common/contextkey.js").ContextKeyExpression; const hasNonEmptySelection: RawContextKey; const hasOnlyEmptySelection: import("../../platform/contextkey/common/contextkey.js").ContextKeyExpression; const hasMultipleSelections: RawContextKey; const hasSingleSelection: import("../../platform/contextkey/common/contextkey.js").ContextKeyExpression; const tabMovesFocus: RawContextKey; const tabDoesNotMoveFocus: import("../../platform/contextkey/common/contextkey.js").ContextKeyExpression; const isInEmbeddedEditor: RawContextKey; const canUndo: RawContextKey; const canRedo: RawContextKey; const hoverVisible: RawContextKey; const hoverFocused: RawContextKey; const stickyScrollFocused: RawContextKey; const stickyScrollVisible: RawContextKey; const standaloneColorPickerVisible: RawContextKey; const standaloneColorPickerFocused: RawContextKey; /** * A context key that is set when an editor is part of a larger editor, like notebooks or * (future) a diff editor */ const inCompositeEditor: RawContextKey; const notInCompositeEditor: import("../../platform/contextkey/common/contextkey.js").ContextKeyExpression; const languageId: RawContextKey; const hasCompletionItemProvider: RawContextKey; const hasCodeActionsProvider: RawContextKey; const hasCodeLensProvider: RawContextKey; const hasDefinitionProvider: RawContextKey; const hasDeclarationProvider: RawContextKey; const hasImplementationProvider: RawContextKey; const hasTypeDefinitionProvider: RawContextKey; const hasHoverProvider: RawContextKey; const hasDocumentHighlightProvider: RawContextKey; const hasDocumentSymbolProvider: RawContextKey; const hasReferenceProvider: RawContextKey; const hasRenameProvider: RawContextKey; const hasSignatureHelpProvider: RawContextKey; const hasInlayHintsProvider: RawContextKey; const hasDocumentFormattingProvider: RawContextKey; const hasDocumentSelectionFormattingProvider: RawContextKey; const hasMultipleDocumentFormattingProvider: RawContextKey; const hasMultipleDocumentSelectionFormattingProvider: RawContextKey; }