mirror of https://github.com/helix-editor/helix
Reset first_line when changing files.
parent
915fd9ebaf
commit
4b176caded
|
@ -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 => {
|
||||
|
|
Loading…
Reference in New Issue