mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -04:00
patch 8.1.0083: "is" and "as" have trouble with quoted punctuation
Problem: "is" and "as" have trouble with quoted punctuation. Solution: Check for punctuation before a quote. (Jason Franklin)
This commit is contained in:
42
src/search.c
42
src/search.c
@@ -2707,10 +2707,11 @@ showmatch(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* findsent(dir, count) - Find the start of the next sentence in direction
|
* Find the start of the next sentence, searching in the direction specified
|
||||||
* "dir" Sentences are supposed to end in ".", "!" or "?" followed by white
|
* by the "dir" argument. The cursor is positioned on the start of the next
|
||||||
* space or a line break. Also stop at an empty line.
|
* sentence when found. If the next sentence is found, return OK. Return FAIL
|
||||||
* Return OK if the next sentence was found.
|
* otherwise. See ":h sentence" for the precise definition of a "sentence"
|
||||||
|
* text object.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
findsent(int dir, long count)
|
findsent(int dir, long count)
|
||||||
@@ -2758,26 +2759,25 @@ findsent(int dir, long count)
|
|||||||
else if (dir == BACKWARD)
|
else if (dir == BACKWARD)
|
||||||
decl(&pos);
|
decl(&pos);
|
||||||
|
|
||||||
/* go back to the previous non-blank char */
|
// go back to the previous non-white non-punctuation character
|
||||||
found_dot = FALSE;
|
found_dot = FALSE;
|
||||||
while ((c = gchar_pos(&pos)) == ' ' || c == '\t' ||
|
while (c = gchar_pos(&pos), VIM_ISWHITE(c)
|
||||||
(dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL))
|
|| vim_strchr((char_u *)".!?)]\"'", c) != NULL)
|
||||||
{
|
{
|
||||||
if (vim_strchr((char_u *)".!?", c) != NULL)
|
tpos = pos;
|
||||||
{
|
if (decl(&tpos) == -1 || (LINEEMPTY(tpos.lnum) && dir == FORWARD))
|
||||||
/* Only skip over a '.', '!' and '?' once. */
|
|
||||||
if (found_dot)
|
|
||||||
break;
|
|
||||||
found_dot = TRUE;
|
|
||||||
}
|
|
||||||
if (decl(&pos) == -1)
|
|
||||||
break;
|
break;
|
||||||
/* when going forward: Stop in front of empty line */
|
|
||||||
if (LINEEMPTY(pos.lnum) && dir == FORWARD)
|
if (found_dot)
|
||||||
{
|
break;
|
||||||
incl(&pos);
|
if (vim_strchr((char_u *) ".!?", c) != NULL)
|
||||||
goto found;
|
found_dot = TRUE;
|
||||||
}
|
|
||||||
|
if (vim_strchr((char_u *) ")]\"'", c) != NULL
|
||||||
|
&& vim_strchr((char_u *) ".!?)]\"'", gchar_pos(&tpos)) == NULL)
|
||||||
|
break;
|
||||||
|
|
||||||
|
decl(&pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* remember the line where the search started */
|
/* remember the line where the search started */
|
||||||
|
@@ -165,3 +165,78 @@ x
|
|||||||
norm it
|
norm it
|
||||||
q!
|
q!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_sentence()
|
||||||
|
enew!
|
||||||
|
call setline(1, 'A sentence. A sentence? A sentence!')
|
||||||
|
|
||||||
|
normal yis
|
||||||
|
call assert_equal('A sentence.', @")
|
||||||
|
normal yas
|
||||||
|
call assert_equal('A sentence. ', @")
|
||||||
|
|
||||||
|
normal )
|
||||||
|
|
||||||
|
normal yis
|
||||||
|
call assert_equal('A sentence?', @")
|
||||||
|
normal yas
|
||||||
|
call assert_equal('A sentence? ', @")
|
||||||
|
|
||||||
|
normal )
|
||||||
|
|
||||||
|
normal yis
|
||||||
|
call assert_equal('A sentence!', @")
|
||||||
|
normal yas
|
||||||
|
call assert_equal(' A sentence!', @")
|
||||||
|
|
||||||
|
normal 0
|
||||||
|
normal 2yis
|
||||||
|
call assert_equal('A sentence. ', @")
|
||||||
|
normal 3yis
|
||||||
|
call assert_equal('A sentence. A sentence?', @")
|
||||||
|
normal 2yas
|
||||||
|
call assert_equal('A sentence. A sentence? ', @")
|
||||||
|
|
||||||
|
%delete _
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_sentence_with_quotes()
|
||||||
|
enew!
|
||||||
|
call setline(1, 'A "sentence." A sentence.')
|
||||||
|
|
||||||
|
normal yis
|
||||||
|
call assert_equal('A "sentence."', @")
|
||||||
|
normal yas
|
||||||
|
call assert_equal('A "sentence." ', @")
|
||||||
|
|
||||||
|
normal )
|
||||||
|
|
||||||
|
normal yis
|
||||||
|
call assert_equal('A sentence.', @")
|
||||||
|
normal yas
|
||||||
|
call assert_equal(' A sentence.', @")
|
||||||
|
|
||||||
|
%delete _
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func! Test_sentence_with_cursor_on_delimiter()
|
||||||
|
enew!
|
||||||
|
call setline(1, "A '([sentence.])' A sentence.")
|
||||||
|
|
||||||
|
normal! 15|yis
|
||||||
|
call assert_equal("A '([sentence.])'", @")
|
||||||
|
normal! 15|yas
|
||||||
|
call assert_equal("A '([sentence.])' ", @")
|
||||||
|
|
||||||
|
normal! 16|yis
|
||||||
|
call assert_equal("A '([sentence.])'", @")
|
||||||
|
normal! 16|yas
|
||||||
|
call assert_equal("A '([sentence.])' ", @")
|
||||||
|
|
||||||
|
normal! 17|yis
|
||||||
|
call assert_equal("A '([sentence.])'", @")
|
||||||
|
normal! 17|yas
|
||||||
|
call assert_equal("A '([sentence.])' ", @")
|
||||||
|
|
||||||
|
%delete _
|
||||||
|
endfunc
|
||||||
|
@@ -761,6 +761,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
83,
|
||||||
/**/
|
/**/
|
||||||
82,
|
82,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user