Skip to content

Commit

Permalink
chore: add multi cursor styles to type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Apr 4, 2024
1 parent 4aaa593 commit c448634
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/types/UIColourPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c448634

Please sign in to comment.