aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authorGokul Soumya2021-11-29 05:39:04 +0000
committerGokul Soumya2021-11-29 05:39:04 +0000
commit058796c18e786309322731ff68b15a0f3901b60b (patch)
tree241112be83b4a16dcaed22e73898d104b538ffbf /helix-view
parent17473b51d37001d4966b82d83d61d3e695e8403d (diff)
Change default cursors to block for all modes
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/editor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 9c77f270..b558c183 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -122,9 +122,9 @@ impl std::ops::Deref for CursorShapeConfig {
impl Default for CursorShapeConfig {
fn default() -> Self {
Self(hashmap!(
- Mode::Insert => CursorKind::Bar,
+ Mode::Insert => CursorKind::Block,
Mode::Normal => CursorKind::Block,
- Mode::Select => CursorKind::Underline,
+ Mode::Select => CursorKind::Block,
))
}
}