aboutsummaryrefslogtreecommitdiff
path: root/vis.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-08 21:58:50 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-08 21:58:50 +0200
commitee3ded959f5486e921e45ac6753b21c2fcd63f0f (patch)
tree69bbccd4f7babce44dad355ac0dcc1573e9fa895 /vis.h
parente7b6ac1574ba4dad280e6a45beb52dac4e3ea2e9 (diff)
downloadvis-ee3ded959f5486e921e45ac6753b21c2fcd63f0f.tar.gz
vis-ee3ded959f5486e921e45ac6753b21c2fcd63f0f.tar.xz
Improve undo/redo
Currently a snapshot is taken whenever an operator is completed or a certain idle time in either insert or replace mode is detected.
Diffstat (limited to 'vis.h')
-rw-r--r--vis.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/vis.h b/vis.h
index 3fc9dad..b7272b4 100644
--- a/vis.h
+++ b/vis.h
@@ -88,9 +88,6 @@ struct Syntax { /* a syntax definition */
Vis *vis_new(int width, int height);
void vis_free(Vis*);
void vis_resize(Vis*, int width, int height);
-void vis_snapshot(Vis*);
-void vis_undo(Vis*);
-void vis_redo(Vis*);
void vis_draw(Vis*);
void vis_update(Vis*);
void vis_insert_key(Vis*, const char *c, size_t len);