Config: cursor-style can bet set to block_hollow

`cursor-style` can now also be set to `block_hollow`, no other changes
in behaviour are added.
This commit is contained in:
Eduardo Dominguez
2024-08-16 15:25:44 -06:00
parent bbc7070c9e
commit 2e70ad20df
4 changed files with 4 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ pub const CursorStyle = enum {
return switch (style) {
.bar => .bar,
.block => .block,
.block_hollow => .block_hollow,
.underline => .underline,
};
}