diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index ca9a7c4..30ddc9c 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -225,7 +225,6 @@ "select": { "name": "SELECT", "inherit": "normal", - "cursor": "block", "press": [ ["left", "select_left"], ["right", "select_right"], diff --git a/src/tui/tui.zig b/src/tui/tui.zig index 0577836..a08e55c 100644 --- a/src/tui/tui.zig +++ b/src/tui/tui.zig @@ -1455,8 +1455,7 @@ fn set_terminal_style(self: *Self) void { pub fn get_cursor_shape() renderer.CursorShape { const self = current(); - const shape_ = if (self.input_mode_) |mode| mode.cursor_shape orelse self.default_cursor else self.default_cursor; - const shape = if (self.rdr_.vx.caps.multi_cursor and shape_ == .default) .beam_blink else shape_; + const shape = if (self.input_mode_) |mode| mode.cursor_shape orelse self.default_cursor else self.default_cursor; return switch (shape) { .default => .default, .block_blink => .block_blink,