updated for version 7.4.551 v7.4.551
authorBram Moolenaar <Bram@vim.org>
Sat, 13 Dec 2014 21:00:22 +0000 (22:00 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 13 Dec 2014 21:00:22 +0000 (22:00 +0100)
Problem:    "ygn" may yank too much. (Fritzophrenic)  Issue 295.
Solution:   Check the width of the next match. (Christian Brabandt)

src/search.c
src/testdir/test53.in
src/testdir/test53.ok
src/version.c

index e22109817d8da7aff398d130c971c9e7a0d489aa..3276a77b7a9da96a098ab9f90c95a488c9a6b338 100644 (file)
@@ -4441,12 +4441,11 @@ current_quote(oap, count, include, quotechar)
 
 #endif /* FEAT_TEXTOBJ */
 
-static int is_one_char __ARGS((char_u *pattern));
+static int is_one_char __ARGS((char_u *pattern, int move));
 
 /*
  * Find next search match under cursor, cursor at end.
  * Used while an operator is pending, and in Visual mode.
- * TODO: redo only works when used in operator pending mode
  */
     int
 current_search(count, forward)
@@ -4491,7 +4490,7 @@ current_search(count, forward)
        orig_pos = pos = start_pos = curwin->w_cursor;
 
     /* Is the pattern is zero-width? */
-    one_char = is_one_char(spats[last_idx].pat);
+    one_char = is_one_char(spats[last_idx].pat, TRUE);
     if (one_char == -1)
     {
        p_ws = old_p_ws;
@@ -4550,6 +4549,10 @@ current_search(count, forward)
     start_pos = pos;
     flags = forward ? SEARCH_END : 0;
 
+    /* Check again from the current cursor position,
+     * since the next match might actually by only one char wide */
+    one_char = is_one_char(spats[last_idx].pat, FALSE);
+
     /* move to match, except for zero-width matches, in which case, we are
      * already on the next match */
     if (!one_char)
@@ -4599,26 +4602,38 @@ current_search(count, forward)
 
 /*
  * Check if the pattern is one character or zero-width.
+ * If move is TRUE, check from the beginning of the buffer, else from the
+ * current cursor position.
  * Returns TRUE, FALSE or -1 for failure.
  */
     static int
-is_one_char(pattern)
+is_one_char(pattern, move)
     char_u     *pattern;
+    int                move;
 {
     regmmatch_T        regmatch;
     int                nmatched = 0;
     int                result = -1;
     pos_T      pos;
     int                save_called_emsg = called_emsg;
+    int                flag = 0;
 
     if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH,
                                              SEARCH_KEEP, &regmatch) == FAIL)
        return -1;
 
     /* move to match */
-    clearpos(&pos);
+    if (move)
+       clearpos(&pos)
+    else
+    {
+       pos = curwin->w_cursor;
+       /* accept a match at the cursor position */
+       flag = SEARCH_START;
+    }
+
     if (searchit(curwin, curbuf, &pos, FORWARD, spats[last_idx].pat, 1,
-                                    SEARCH_KEEP, RE_SEARCH, 0, NULL) != FAIL)
+                             SEARCH_KEEP + flag, RE_SEARCH, 0, NULL) != FAIL)
     {
        /* Zero-width pattern should match somewhere, then we can check if
         * start and end are in the same position. */
index 011c9ae39da6e42da3b5e9595ca91a1b6ba4004b..8ca9c9ed291236877fbc154da7d263df3a8edceb 100644 (file)
@@ -79,6 +79,8 @@ ggdgn.
 :" test repeating gUgn
 /^Depp
 gggUgn.
+gg/a:0\@!\zs\d\+
+nygno\ep
 :/^start:/,/^end:/wq! test.out
 ENDTEST
 
@@ -108,6 +110,11 @@ delete first and last chars
 uniquepattern uniquepattern
 my very excellent mother just served us nachos
 for (i=0; i<=10; i++)
+a:10
+
+a:1
+
+a:20
 Y
 text
 Y
index d7ffa6bc516a53791c803584ff8d60fa308d6ec6..0c0b9ded1624bd0edec476c202f041ca9bf55f71 100644 (file)
@@ -49,6 +49,12 @@ elete first and last char
  uniquepattern
 my very excellent mongoose just served us nachos
 for (j=0; i<=10; i++)
+a:10
+
+a:1
+1
+
+a:20
 
 text
 Y
index 32fb7315750dd9e9daf98c0dacfe37e1ad65d12d..6408d570770755bccca0721a61786844f65d4355 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    551,
 /**/
     550,
 /**/