diff options
author | Seth Bromberger | 2022-07-26 01:07:59 +0000 |
---|---|---|
committer | GitHub | 2022-07-26 01:07:59 +0000 |
commit | bfdcfec8c954225f79b49ce3e4db4bb76715ae69 (patch) | |
tree | 7c0f58f3ba807a0fc02112b52b239af6a48cd408 /helix-view/src | |
parent | 742d16026eb288b93e334a92863bb46ec2b500e7 (diff) |
add spacer element to statusline (#3165)
* add spacer element to statusline
* docs
Diffstat (limited to 'helix-view/src')
-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 7bfeb8db..53c664b1 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -246,6 +246,9 @@ pub enum StatusLineElement { /// The cursor position Position, + + /// A single space + Spacer, } // Cursor shape is read and used on every rendered frame and so needs |