aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/document.rs2
-rw-r--r--helix-view/src/editor.rs6
-rw-r--r--helix-view/src/keymap.rs2
-rw-r--r--helix-view/src/view.rs40
4 files changed, 29 insertions, 21 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index a313b281..710ea4f8 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -164,4 +164,6 @@ impl Document {
// pub fn slice<R>(&self, range: R) -> RopeSlice where R: RangeBounds {
// self.state.doc.slice
// }
+
+ // TODO: transact(Fn) ?
}
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 02199255..9fb2ae36 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -12,6 +12,12 @@ pub struct Editor {
pub theme: Theme, // TODO: share one instance
}
+impl Default for Editor {
+ fn default() -> Self {
+ Self::new()
+ }
+}
+
impl Editor {
pub fn new() -> Self {
let theme = Theme::default();
diff --git a/helix-view/src/keymap.rs b/helix-view/src/keymap.rs
index 347e7d77..aaba34a6 100644
--- a/helix-view/src/keymap.rs
+++ b/helix-view/src/keymap.rs
@@ -1,6 +1,6 @@
use crate::commands::{self, Command};
use crate::document::Mode;
-use helix_core::{hashmap, state};
+use helix_core::hashmap;
use std::collections::HashMap;
// Kakoune-inspired:
diff --git a/helix-view/src/view.rs b/helix-view/src/view.rs
index 4cf6a2ee..df41e3ae 100644
--- a/helix-view/src/view.rs
+++ b/helix-view/src/view.rs
@@ -86,24 +86,24 @@ impl View {
Some(Position::new(row, col))
}
- pub fn traverse<F>(&self, text: &RopeSlice, start: usize, end: usize, fun: F)
- where
- F: Fn(usize, usize),
- {
- let start = self.screen_coords_at_pos(text, start);
- let end = self.screen_coords_at_pos(text, end);
-
- match (start, end) {
- // fully on screen
- (Some(start), Some(end)) => {
- // we want to calculate ends of lines for each char..
- }
- // from start to end of screen
- (Some(start), None) => {}
- // from start of screen to end
- (None, Some(end)) => {}
- // not on screen
- (None, None) => return,
- }
- }
+ // pub fn traverse<F>(&self, text: &RopeSlice, start: usize, end: usize, fun: F)
+ // where
+ // F: Fn(usize, usize),
+ // {
+ // let start = self.screen_coords_at_pos(text, start);
+ // let end = self.screen_coords_at_pos(text, end);
+
+ // match (start, end) {
+ // // fully on screen
+ // (Some(start), Some(end)) => {
+ // // we want to calculate ends of lines for each char..
+ // }
+ // // from start to end of screen
+ // (Some(start), None) => {}
+ // // from start of screen to end
+ // (None, Some(end)) => {}
+ // // not on screen
+ // (None, None) => return,
+ // }
+ // }
}