vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 72744cde0434379ebba795a717f4a5124c985b77 parent 4a0b697c57bef00cbbf594bbab271268091206ae Author: TwoFinger <Two-Finger@users.noreply.github.com> Date: Sat, 2 Jun 2018 17:04:35 +0300 main: fix a few mistakes in comments Diffstat:
| M | main.c | | | 12 | ++++++------ |
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/main.c b/main.c @@ -72,19 +72,19 @@ static const char *selections_match_skip(Vis*, const char *keys, const Arg *arg) static const char *selections_rotate(Vis*, const char *keys, const Arg *arg); /* remove leading and trailing white spaces from selections */ static const char *selections_trim(Vis*, const char *keys, const Arg *arg); -/* save active selections to register */ +/* save active selections to mark */ static const char *selections_save(Vis*, const char *keys, const Arg *arg); -/* restore selections from register */ +/* restore selections from mark */ static const char *selections_restore(Vis*, const char *keys, const Arg *arg); -/* union selections */ +/* union selections from mark */ static const char *selections_union(Vis*, const char *keys, const Arg *arg); -/* intersect selections */ +/* intersect selections from mark */ static const char *selections_intersect(Vis*, const char *keys, const Arg *arg); /* perform complement of current active selections */ static const char *selections_complement(Vis*, const char *keys, const Arg *arg); -/* subtract selections from register */ +/* subtract selections from mark */ static const char *selections_minus(Vis*, const char *keys, const Arg *arg); -/* pairwise combine selections */ +/* pairwise combine selections from mark */ static const char *selections_combine(Vis*, const char *keys, const Arg *arg); static Filerange combine_union(const Filerange*, const Filerange*); static Filerange combine_intersect(const Filerange*, const Filerange*);