mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2-124
This commit is contained in:
parent
fa47a9218d
commit
f08fa44a1a
17
src/tag.c
17
src/tag.c
@ -618,7 +618,7 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
taglen_advance(taglen);
|
taglen_advance(taglen);
|
||||||
MSG_PUTS_ATTR(_("file\n"), hl_attr(HLF_T));
|
MSG_PUTS_ATTR(_("file\n"), hl_attr(HLF_T));
|
||||||
|
|
||||||
for (i = 0; i < num_matches; ++i)
|
for (i = 0; i < num_matches && !got_int; ++i)
|
||||||
{
|
{
|
||||||
parse_match(matches[i], &tagp);
|
parse_match(matches[i], &tagp);
|
||||||
if (!new_tag && (
|
if (!new_tag && (
|
||||||
@ -655,6 +655,8 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
}
|
}
|
||||||
if (msg_col > 0)
|
if (msg_col > 0)
|
||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
|
if (got_int)
|
||||||
|
break;
|
||||||
msg_advance(15);
|
msg_advance(15);
|
||||||
|
|
||||||
/* print any extra fields */
|
/* print any extra fields */
|
||||||
@ -689,6 +691,8 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
if (msg_col + ptr2cells(p) >= Columns)
|
if (msg_col + ptr2cells(p) >= Columns)
|
||||||
{
|
{
|
||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
|
if (got_int)
|
||||||
|
break;
|
||||||
msg_advance(15);
|
msg_advance(15);
|
||||||
}
|
}
|
||||||
p = msg_outtrans_one(p, attr);
|
p = msg_outtrans_one(p, attr);
|
||||||
@ -704,6 +708,8 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
if (msg_col > 15)
|
if (msg_col > 15)
|
||||||
{
|
{
|
||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
|
if (got_int)
|
||||||
|
break;
|
||||||
msg_advance(15);
|
msg_advance(15);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -734,6 +740,8 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
{
|
{
|
||||||
if (msg_col + (*p == TAB ? 1 : ptr2cells(p)) > Columns)
|
if (msg_col + (*p == TAB ? 1 : ptr2cells(p)) > Columns)
|
||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
|
if (got_int)
|
||||||
|
break;
|
||||||
msg_advance(15);
|
msg_advance(15);
|
||||||
|
|
||||||
/* skip backslash used for escaping command char */
|
/* skip backslash used for escaping command char */
|
||||||
@ -760,12 +768,9 @@ do_tag(tag, type, count, forceit, verbose)
|
|||||||
if (msg_col)
|
if (msg_col)
|
||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
ui_breakcheck();
|
ui_breakcheck();
|
||||||
if (got_int)
|
|
||||||
{
|
|
||||||
got_int = FALSE; /* only stop the listing */
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
if (got_int)
|
||||||
|
got_int = FALSE; /* only stop the listing */
|
||||||
ask_for_selection = TRUE;
|
ask_for_selection = TRUE;
|
||||||
}
|
}
|
||||||
#if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
|
#if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
|
||||||
|
@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
124,
|
||||||
/**/
|
/**/
|
||||||
123,
|
123,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user