diff options
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index db97cbb1..213141ff 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -328,6 +328,9 @@ pub enum StatusLineElement { /// The number of selections (cursors) Selections, + /// The number of characters currently in primary selection + PrimarySelectionLength, + /// The cursor position Position, |