aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/document.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-01 05:31:34 +0000
committerBlaž Hrastnik2021-03-01 05:31:34 +0000
commitec4dd0a176ad3cfffbc1f45198e64ae83ab6add3 (patch)
tree42dab9dd723a33ec32c7e32516e5986e3d8efbec /helix-view/src/document.rs
parent00808afe3c215d159574b23e30326379428060bf (diff)
Add a selection mode again.
Diffstat (limited to 'helix-view/src/document.rs')
-rw-r--r--helix-view/src/document.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index 3f3f620f..b79e201d 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -10,6 +10,7 @@ use helix_core::{
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub enum Mode {
Normal,
+ Select,
Insert,
Goto,
}