mirror of https://github.com/helix-editor/helix
Bump document version on undo/redo.
parent
efc5aa2016
commit
e4070d4de0
|
@ -504,6 +504,7 @@ pub fn insert_char_prompt(prompt: &mut Prompt, c: char) {
|
||||||
|
|
||||||
pub fn undo(view: &mut View, _count: usize) {
|
pub fn undo(view: &mut View, _count: usize) {
|
||||||
if let Some(revert) = view.doc.history.undo() {
|
if let Some(revert) = view.doc.history.undo() {
|
||||||
|
view.doc.version += 1;
|
||||||
view.doc.apply(&revert);
|
view.doc.apply(&revert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -512,6 +513,7 @@ pub fn undo(view: &mut View, _count: usize) {
|
||||||
|
|
||||||
pub fn redo(view: &mut View, _count: usize) {
|
pub fn redo(view: &mut View, _count: usize) {
|
||||||
if let Some(transaction) = view.doc.history.redo() {
|
if let Some(transaction) = view.doc.history.redo() {
|
||||||
|
view.doc.version += 1;
|
||||||
view.doc.apply(&transaction);
|
view.doc.apply(&transaction);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue