# HG changeset patch # User Bram Moolenaar # Date 1599324304 -7200 # Node ID 3785043f87681a0933dfd883b2547bbb9d605ff1 # Parent 8647bba4ccc71896327ffacfa437cf659e9062a0 patch 8.2.1604: Vim9: cannot use "true" with getcompletion() Commit: https://github.com/vim/vim/commit/d217a87755ba01fc626b1c178c682fcd05ab3a28 Author: Bram Moolenaar Date: Sat Sep 5 18:31:33 2020 +0200 patch 8.2.1604: Vim9: cannot use "true" with getcompletion() Problem: Vim9: cannot use "true" with getcompletion(). Solution: use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6875) diff --git a/src/cmdexpand.c b/src/cmdexpand.c --- a/src/cmdexpand.c +++ b/src/cmdexpand.c @@ -2885,7 +2885,7 @@ f_getcompletion(typval_T *argvars, typva type = tv_get_string(&argvars[1]); if (argvars[2].v_type != VAR_UNKNOWN) - filtered = tv_get_number_chk(&argvars[2], NULL); + filtered = tv_get_bool_chk(&argvars[2], NULL); if (p_wic) options |= WILD_ICASE; diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -1509,6 +1509,13 @@ def Test_getchar() assert_equal(0, getchar(true)) enddef +def Test_getcompletion() + set wildignore=*.vim,*~ + let l = getcompletion('run', 'file', true) + assert_equal([], l) + set wildignore& +enddef + def Fibonacci(n: number): number if n < 2 return n diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1604, +/**/ 1603, /**/ 1602,