From 5c600e15c1c1ab64f385de918c93d2bdb23955d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 6 Jul 2017 21:28:51 +0200 Subject: vis: use marks instead of registers to store selections The key binding remain the same, but the selections are now stored on a per-buffer basis. --- vis.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vis.h') diff --git a/vis.h b/vis.h index 4518b65..c53c245 100644 --- a/vis.h +++ b/vis.h @@ -671,8 +671,8 @@ bool vis_textobject(Vis*, enum VisTextObject); /** @} */ /** Mark specifiers. */ enum VisMark { - VIS_MARK_SELECTION_START, /* '< */ - VIS_MARK_SELECTION_END, /* '> */ + VIS_MARK_DEFAULT, + VIS_MARK_SELECTION, VIS_MARK_a, VIS_MARK_b, VIS_MARK_c, VIS_MARK_d, VIS_MARK_e, VIS_MARK_f, VIS_MARK_g, VIS_MARK_h, VIS_MARK_i, VIS_MARK_j, VIS_MARK_k, VIS_MARK_l, VIS_MARK_m, VIS_MARK_n, VIS_MARK_o, -- cgit v1.2.3