aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
authornotoria2021-06-08 18:34:45 +0000
committerBlaž Hrastnik2021-06-10 13:00:08 +0000
commit9887b1275afb516ffd1ebef8788ed661b703f0ce (patch)
tree2c2d7dfdb67af3ca6f2b143c05aa4b934406cbb5 /helix-view
parent7cc13fefe9bd09ea778a0eb8c26bf133e6ad2476 (diff)
Implement missing Debug and update Cargo.lock
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/register_selection.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/register_selection.rs b/helix-view/src/register_selection.rs
index d7f073b6..a2b78f72 100644
--- a/helix-view/src/register_selection.rs
+++ b/helix-view/src/register_selection.rs
@@ -3,6 +3,7 @@
/// This is a kind a of specialized `Option<char>` for register selection.
/// Point is to keep whether the register selection has been explicitely
/// set or not while being convenient by knowing the default register name.
+#[derive(Debug)]
pub struct RegisterSelection {
selected: char,
default_name: char,