Introduction
Introduction Statistics Contact Development Disclaimer Help
tmot: word motions stop at empty lines - neatvi - [fork] simple vi-type editor …
git clone git://src.adamsgaard.dk/neatvi
Log
Files
Refs
README
---
commit 5eaaf403f7dc6a08f434aea8825e692102bf258a
parent 979fba724b1590629fd7a6d45abdf68cc4f61490
Author: Ali Gholami Rudi <[email protected]>
Date: Mon, 23 May 2016 14:34:27 +0430
mot: word motions stop at empty lines
Diffstat:
M mot.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
---
diff --git a/mot.c b/mot.c
t@@ -151,12 +151,13 @@ static int lbuf_wordlast(struct lbuf *lb, int kind, int …
int lbuf_wordbeg(struct lbuf *lb, int big, int dir, int *row, int *off)
{
- int nl = 0;
+ int nl;
lbuf_wordlast(lb, big ? 3 : uc_kind(lbuf_chr(lb, *row, *off)), dir, ro…
+ nl = uc_code(lbuf_chr(lb, *row, *off)) == '\n';
if (lbuf_next(lb, dir, row, off))
return 1;
while (uc_isspace(lbuf_chr(lb, *row, *off))) {
- nl = uc_code(lbuf_chr(lb, *row, *off)) == '\n' ? nl + 1 : 0;
+ nl += uc_code(lbuf_chr(lb, *row, *off)) == '\n';
if (nl == 2)
return 0;
if (lbuf_next(lb, dir, row, off))
t@@ -167,19 +168,22 @@ int lbuf_wordbeg(struct lbuf *lb, int big, int dir, int …
int lbuf_wordend(struct lbuf *lb, int big, int dir, int *row, int *off)
{
- int nl = uc_code(lbuf_chr(lb, *row, *off)) == '\n' ? -1 : 0;
- if (!uc_isspace(lbuf_chr(lb, *row, *off)))
+ int nl = 0;
+ if (!uc_isspace(lbuf_chr(lb, *row, *off))) {
if (lbuf_next(lb, dir, row, off))
return 1;
+ nl = dir < 0 && uc_code(lbuf_chr(lb, *row, *off)) == '\n';
+ }
+ nl += dir > 0 && uc_code(lbuf_chr(lb, *row, *off)) == '\n';
while (uc_isspace(lbuf_chr(lb, *row, *off))) {
- nl = uc_code(lbuf_chr(lb, *row, *off)) == '\n' ? nl + 1 : 0;
+ if (lbuf_next(lb, dir, row, off))
+ return 1;
+ nl += uc_code(lbuf_chr(lb, *row, *off)) == '\n';
if (nl == 2) {
if (dir < 0)
lbuf_next(lb, -dir, row, off);
return 0;
}
- if (lbuf_next(lb, dir, row, off))
- return 1;
}
if (lbuf_wordlast(lb, big ? 3 : uc_kind(lbuf_chr(lb, *row, *off)), dir…
return 1;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.