Don't show Vim cursor outline in unfocused cells

This commit is contained in:
Jonatan Kłosko 2024-01-26 21:50:31 +08:00
parent f9f8579ca4
commit d0cd3a48ce

View file

@ -85,6 +85,12 @@ function buildEditorTheme(colors, { dark }) {
backgroundColor: colors.selectionMatchBackground,
},
// Vim cursor
"&:not(.cm-focused) .cm-fat-cursor": {
outline: "none !important",
},
// Base components
".cm-gutters": {