aboutsummaryrefslogtreecommitdiff
path: root/view.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-06-30 11:37:00 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-06-30 11:37:00 +0200
commit4af9fe66851a42c20c550f2c59aa64d7a327c9ff (patch)
tree5bc43ab92be87d8749ad258beb57271785ec6d24 /view.h
parent60fe132d6c59d54021091af8e5aa09fcd4704562 (diff)
downloadvis-4af9fe66851a42c20c550f2c59aa64d7a327c9ff.tar.gz
vis-4af9fe66851a42c20c550f2c59aa64d7a327c9ff.tar.xz
Perform character prev/next movements based on Text not View
While it is slower, it allows to move to characters which are currently not visible. This will be handy when experimenting with multiple cursors.
Diffstat (limited to 'view.h')
-rw-r--r--view.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/view.h b/view.h
index 01b4918..049ed4c 100644
--- a/view.h
+++ b/view.h
@@ -54,8 +54,6 @@ void view_tabwidth_set(View*, int tabwidth);
/* cursor movements which also update selection if one is active.
* they return new cursor postion */
-size_t view_char_next(View*);
-size_t view_char_prev(View*);
size_t view_line_down(View*);
size_t view_line_up(View*);
size_t view_screenline_down(View*);