A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/text/hist.rs')
| -rw-r--r-- | src/text/hist.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text/hist.rs b/src/text/hist.rs index 97a05c7..6edb771 100644 --- a/src/text/hist.rs +++ b/src/text/hist.rs @@ -197,7 +197,7 @@ impl Hist { let c = take(&mut x.changes); self.history.push(Diff(c, [take(&mut self.lc), x.cursor.clone()])); self.lc = x.cursor.clone(); - println!("push {}", self.history.last().unwrap()); + // println!("push {}", self.history.last().unwrap()); self.redo_history.clear(); take(&mut self.last); self.last_edit = Instant::now(); |