Inform when reaching undo/redo bounds (#981)

* Inform when reaching undo/redo bounds

* `Already at oldest change` when undo fails
* `Already at newest change` when redo fails

* Add missing `the`
This commit is contained in:
Omnikar 2021-11-04 21:20:06 -04:00 committed by GitHub
parent aa4d0b4646
commit 51b4d35dce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 6 deletions

View file

@ -3679,13 +3679,19 @@ pub fn delete_word_backward(cx: &mut Context) {
fn undo(cx: &mut Context) {
let (view, doc) = current!(cx.editor);
let view_id = view.id;
doc.undo(view_id);
let success = doc.undo(view_id);
if !success {
cx.editor.set_status("Already at oldest change".to_owned());
}
}
fn redo(cx: &mut Context) {
let (view, doc) = current!(cx.editor);
let view_id = view.id;
doc.redo(view_id);
let success = doc.redo(view_id);
if !success {
cx.editor.set_status("Already at newest change".to_owned());
}
}
// Yank / Paste

View file

@ -704,8 +704,8 @@ pub fn apply(&mut self, transaction: &Transaction, view_id: ViewId) -> bool {
success
}
/// Undo the last modification to the [`Document`].
pub fn undo(&mut self, view_id: ViewId) {
/// Undo the last modification to the [`Document`]. Returns whether the undo was successful.
pub fn undo(&mut self, view_id: ViewId) -> bool {
let mut history = self.history.take();
let success = if let Some(transaction) = history.undo() {
self.apply_impl(transaction, view_id)
@ -718,10 +718,11 @@ pub fn undo(&mut self, view_id: ViewId) {
// reset changeset to fix len
self.changes = ChangeSet::new(self.text());
}
success
}
/// Redo the last modification to the [`Document`].
pub fn redo(&mut self, view_id: ViewId) {
/// Redo the last modification to the [`Document`]. Returns whether the redo was sucessful.
pub fn redo(&mut self, view_id: ViewId) -> bool {
let mut history = self.history.take();
let success = if let Some(transaction) = history.redo() {
self.apply_impl(transaction, view_id)
@ -734,6 +735,7 @@ pub fn redo(&mut self, view_id: ViewId) {
// reset changeset to fix len
self.changes = ChangeSet::new(self.text());
}
success
}
pub fn savepoint(&mut self) {