aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2021-10-17 16:22:28 +0200
committerMatěj Cepl <mcepl@cepl.eu>2021-10-23 22:30:53 +0200
commit36ff5976b9fee823892a1abcfb484cf3f162bb3b (patch)
treeb6f25d2779af18d3cb8110d1fe3b568a4f0a3a49 /src
parentcbec765915a8a76e86ac79dde8eeae663b019882 (diff)
downloadrneovim-36ff5976b9fee823892a1abcfb484cf3f162bb3b.tar.gz
rneovim-36ff5976b9fee823892a1abcfb484cf3f162bb3b.tar.bz2
rneovim-36ff5976b9fee823892a1abcfb484cf3f162bb3b.zip
vim-patch:8.2.3521: options completion test fails
Problem: Options completion test fails. Solution: Add 'thesaurusfunc' to the results. https://github.com/vim/vim/commit/abdcfd1c837e244065d4fe04c7a78abae5af3f7e
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_options.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim
index 72c151142d..41c689849b 100644
--- a/src/nvim/testdir/test_options.vim
+++ b/src/nvim/testdir/test_options.vim
@@ -209,7 +209,7 @@ func Test_set_completion()
" Expand abbreviation of options.
call feedkeys(":set ts\<C-A>\<C-B>\"\<CR>", 'tx')
- call assert_equal('"set tabstop thesaurus', @:)
+ call assert_equal('"set tabstop thesaurus thesaurusfunc', @:)
" Expand current value
call feedkeys(":set fileencodings=\<C-A>\<C-B>\"\<CR>", 'tx')