summaryrefslogtreecommitdiff
path: root/src/testdir/test_cmdline.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-03-26 13:50:09 +0200
committerBram Moolenaar <Bram@vim.org>2017-03-26 13:50:09 +0200
commitc96272e30e2b81e5e0c8418f09d9db4e2fcd5d73 (patch)
treef8434ca5d83eabd03868e5e2ddfff45c976067f1 /src/testdir/test_cmdline.vim
parent1572e30607e9a3bee9750242bf37168f7d2b6e66 (diff)
downloadvim-git-c96272e30e2b81e5e0c8418f09d9db4e2fcd5d73.tar.gz
patch 8.0.0513: getting name of cleared highlight group is wrongv8.0.0513
Problem: Getting name of cleared highlight group is wrong. (Matt Wozniski) Solution: Only skip over cleared names for completion. (closes #1592) Also fix that a cleared group causes duplicate completions.
Diffstat (limited to 'src/testdir/test_cmdline.vim')
-rw-r--r--src/testdir/test_cmdline.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim
index 98a433778..77c917049 100644
--- a/src/testdir/test_cmdline.vim
+++ b/src/testdir/test_cmdline.vim
@@ -71,6 +71,14 @@ func Test_highlight_completion()
call assert_equal('"hi default', getreg(':'))
call feedkeys(":hi c\<S-Tab>\<Home>\"\<CR>", 'xt')
call assert_equal('"hi clear', getreg(':'))
+
+ " A cleared group does not show up in completions.
+ hi Anders ctermfg=green
+ call assert_equal(['Aardig', 'Anders'], getcompletion('A', 'highlight'))
+ hi clear Aardig
+ call assert_equal(['Anders'], getcompletion('A', 'highlight'))
+ hi clear Anders
+ call assert_equal([], getcompletion('A', 'highlight'))
endfunc
func Test_expr_completion()