mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.3694: cannot use quotes in the count of an Ex command
Problem: Cannot use quotes in the count of an Ex command. Solution: Add getdigits_quoted(). Give an error when misplacing a quote in a range. (closes #9240)
This commit is contained in:
@@ -1748,7 +1748,7 @@ skiptowhite_esc(char_u *p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Getdigits: Get a number from a string and skip over it.
|
* Get a number from a string and skip over it.
|
||||||
* Note: the argument is a pointer to a char_u pointer!
|
* Note: the argument is a pointer to a char_u pointer!
|
||||||
*/
|
*/
|
||||||
long
|
long
|
||||||
@@ -1766,6 +1766,38 @@ getdigits(char_u **pp)
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Like getdigits() but allow for embedded single quotes.
|
||||||
|
*/
|
||||||
|
long
|
||||||
|
getdigits_quoted(char_u **pp)
|
||||||
|
{
|
||||||
|
char_u *p = *pp;
|
||||||
|
long retval = 0;
|
||||||
|
|
||||||
|
if (*p == '-')
|
||||||
|
++p;
|
||||||
|
while (VIM_ISDIGIT(*p))
|
||||||
|
{
|
||||||
|
if (retval >= LONG_MAX / 10 - 10)
|
||||||
|
retval = LONG_MAX;
|
||||||
|
else
|
||||||
|
retval = retval * 10 - '0' + *p;
|
||||||
|
++p;
|
||||||
|
if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
|
||||||
|
++p;
|
||||||
|
}
|
||||||
|
if (**pp == '-')
|
||||||
|
{
|
||||||
|
if (retval == LONG_MAX)
|
||||||
|
retval = LONG_MIN;
|
||||||
|
else
|
||||||
|
retval = -retval;
|
||||||
|
}
|
||||||
|
*pp = p;
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return TRUE if "lbuf" is empty or only contains blanks.
|
* Return TRUE if "lbuf" is empty or only contains blanks.
|
||||||
*/
|
*/
|
||||||
|
@@ -2402,7 +2402,7 @@ do_one_cmd(
|
|||||||
&& (!(ea.argt & EX_BUFNAME) || *(p = skipdigits(ea.arg + 1)) == NUL
|
&& (!(ea.argt & EX_BUFNAME) || *(p = skipdigits(ea.arg + 1)) == NUL
|
||||||
|| VIM_ISWHITE(*p)))
|
|| VIM_ISWHITE(*p)))
|
||||||
{
|
{
|
||||||
n = getdigits(&ea.arg);
|
n = getdigits_quoted(&ea.arg);
|
||||||
ea.arg = skipwhite(ea.arg);
|
ea.arg = skipwhite(ea.arg);
|
||||||
if (n <= 0 && !ni && (ea.argt & EX_ZEROR) == 0)
|
if (n <= 0 && !ni && (ea.argt & EX_ZEROR) == 0)
|
||||||
{
|
{
|
||||||
@@ -3950,10 +3950,11 @@ excmd_get_argt(cmdidx_T idx)
|
|||||||
*/
|
*/
|
||||||
char_u *
|
char_u *
|
||||||
skip_range(
|
skip_range(
|
||||||
char_u *cmd,
|
char_u *cmd_start,
|
||||||
int skip_star, // skip "*" used for Visual range
|
int skip_star, // skip "*" used for Visual range
|
||||||
int *ctx) // pointer to xp_context or NULL
|
int *ctx) // pointer to xp_context or NULL
|
||||||
{
|
{
|
||||||
|
char_u *cmd = cmd_start;
|
||||||
unsigned delim;
|
unsigned delim;
|
||||||
|
|
||||||
while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;\\", *cmd) != NULL)
|
while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;\\", *cmd) != NULL)
|
||||||
@@ -3967,6 +3968,17 @@ skip_range(
|
|||||||
}
|
}
|
||||||
else if (*cmd == '\'')
|
else if (*cmd == '\'')
|
||||||
{
|
{
|
||||||
|
char_u *p = cmd;
|
||||||
|
|
||||||
|
// a quote is only valid at the start or after a separator
|
||||||
|
while (p > cmd_start)
|
||||||
|
{
|
||||||
|
--p;
|
||||||
|
if (!VIM_ISWHITE(*p))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (cmd > cmd_start && !VIM_ISWHITE(*p) && *p != ',' && *p != ';')
|
||||||
|
break;
|
||||||
if (*++cmd == NUL && ctx != NULL)
|
if (*++cmd == NUL && ctx != NULL)
|
||||||
*ctx = EXPAND_NOTHING;
|
*ctx = EXPAND_NOTHING;
|
||||||
}
|
}
|
||||||
|
@@ -54,6 +54,7 @@ int vim_tolower(int c);
|
|||||||
char_u *skiptowhite(char_u *p);
|
char_u *skiptowhite(char_u *p);
|
||||||
char_u *skiptowhite_esc(char_u *p);
|
char_u *skiptowhite_esc(char_u *p);
|
||||||
long getdigits(char_u **pp);
|
long getdigits(char_u **pp);
|
||||||
|
long getdigits_quoted(char_u **pp);
|
||||||
int vim_isblankline(char_u *lbuf);
|
int vim_isblankline(char_u *lbuf);
|
||||||
void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict);
|
void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict);
|
||||||
int hex2nr(int c);
|
int hex2nr(int c);
|
||||||
|
@@ -677,4 +677,32 @@ func Test_delcommand_buffer()
|
|||||||
call assert_equal(0, exists(':Global'))
|
call assert_equal(0, exists(':Global'))
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
def Test_count_with_quotes()
|
||||||
|
command -count GetCount g:nr = <count>
|
||||||
|
execute("GetCount 1'2")
|
||||||
|
assert_equal(12, g:nr)
|
||||||
|
execute("GetCount 1'234'567")
|
||||||
|
assert_equal(1'234'567, g:nr)
|
||||||
|
|
||||||
|
execute("GetCount 1'234'567'890'123'456'789'012")
|
||||||
|
assert_equal(v:sizeoflong == 8 ? 9223372036854775807 : 2147483647, g:nr)
|
||||||
|
|
||||||
|
# TODO: test with negative number once this is supported
|
||||||
|
|
||||||
|
assert_fails("GetCount '12", "E488:")
|
||||||
|
assert_fails("GetCount 12'", "E488:")
|
||||||
|
assert_fails("GetCount 1''2", "E488:")
|
||||||
|
|
||||||
|
assert_fails(":1'2GetCount", 'E492:')
|
||||||
|
new
|
||||||
|
setline(1, 'text')
|
||||||
|
normal ma
|
||||||
|
execute(":1, 'aprint")
|
||||||
|
bwipe!
|
||||||
|
|
||||||
|
unlet g:nr
|
||||||
|
delcommand GetCount
|
||||||
|
enddef
|
||||||
|
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@@ -757,6 +757,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 */
|
||||||
|
/**/
|
||||||
|
3694,
|
||||||
/**/
|
/**/
|
||||||
3693,
|
3693,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user