mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 9.1.0146: v:echospace wrong with invalid value of 'showcmdloc'
Problem: v:echospace wrong after setting invalid value to 'showcmdloc'. Solution: Only call comp_col() if value is valid. (zeertzjq) closes: #14119 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
87410ab3f5
commit
c27fcf4857
@@ -3440,8 +3440,12 @@ did_set_showbreak(optset_T *args)
|
|||||||
char *
|
char *
|
||||||
did_set_showcmdloc(optset_T *args UNUSED)
|
did_set_showcmdloc(optset_T *args UNUSED)
|
||||||
{
|
{
|
||||||
|
char *errmsg = did_set_opt_strings(p_sloc, p_sloc_values, FALSE);
|
||||||
|
|
||||||
|
if (errmsg == NULL)
|
||||||
comp_col();
|
comp_col();
|
||||||
return did_set_opt_strings(p_sloc, p_sloc_values, FALSE);
|
|
||||||
|
return errmsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@@ -166,6 +166,12 @@ func Test_echospace()
|
|||||||
call assert_equal(&columns - 19, v:echospace)
|
call assert_equal(&columns - 19, v:echospace)
|
||||||
set showcmdloc=tabline
|
set showcmdloc=tabline
|
||||||
call assert_equal(&columns - 19, v:echospace)
|
call assert_equal(&columns - 19, v:echospace)
|
||||||
|
call assert_fails('set showcmdloc=leap', 'E474:')
|
||||||
|
call assert_equal(&columns - 19, v:echospace)
|
||||||
|
set showcmdloc=last
|
||||||
|
call assert_equal(&columns - 29, v:echospace)
|
||||||
|
call assert_fails('set showcmdloc=jump', 'E474:')
|
||||||
|
call assert_equal(&columns - 29, v:echospace)
|
||||||
|
|
||||||
set ruler& showcmd& showcmdloc&
|
set ruler& showcmd& showcmdloc&
|
||||||
endfunc
|
endfunc
|
||||||
|
@@ -704,6 +704,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 */
|
||||||
|
/**/
|
||||||
|
146,
|
||||||
/**/
|
/**/
|
||||||
145,
|
145,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user