From c4486342591252d6d37da408595fa6c3a3e2ce17 Mon Sep 17 00:00:00 2001 From: Robert Rossmann Date: Thu, 4 Apr 2024 23:14:20 +0200 Subject: [PATCH] chore: add multi cursor styles to type definitions --- src/types/UIColourPalette.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/types/UIColourPalette.ts b/src/types/UIColourPalette.ts index 0399940..4e545ed 100644 --- a/src/types/UIColourPalette.ts +++ b/src/types/UIColourPalette.ts @@ -618,6 +618,22 @@ interface UIColourPalette { * Color of the editor cursor. */ 'editorCursor.foreground'?: ColourLike + /** + * Color of the primary editor cursor when multiple cursors are present. + */ + 'editorMultiCursor.primary.foreground'?: ColourLike + /** + * The background color of the primary editor cursor when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor. + */ + 'editorMultiCursor.primary.background'?: ColourLike + /** + * Color of secondary editor cursors when multiple cursors are present. + */ + 'editorMultiCursor.secondary.foreground'?: ColourLike + /** + * The background color of secondary editor cursors when multiple cursors are present. Allows customizing the color of a character overlapped by a block cursor. + */ + 'editorMultiCursor.secondary.background'?: ColourLike /** * Background color of error text in the editor. The color must not be opaque so as not to hide underlying * decorations.