diff options
author | Gokul Soumya | 2021-11-29 05:39:04 +0000 |
---|---|---|
committer | Gokul Soumya | 2021-11-29 05:39:04 +0000 |
commit | 058796c18e786309322731ff68b15a0f3901b60b (patch) | |
tree | 241112be83b4a16dcaed22e73898d104b538ffbf /helix-view/src | |
parent | 17473b51d37001d4966b82d83d61d3e695e8403d (diff) |
Change default cursors to block for all modes
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/editor.rs | 4 |
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, )) } } |