aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-view/src/editor.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index a2c3c101..33e380a0 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -90,8 +90,9 @@ impl Editor {
use crate::tree::Layout;
match action {
Action::Replace => {
- self.view_mut().doc = id;
- // TODO: reset selection?
+ let view = self.view_mut();
+ view.doc = id;
+ view.first_line = 0;
return Ok(id);
}
Action::HorizontalSplit => {