summaryrefslogtreecommitdiffstats
path: root/src/testdir/gen_opt_test.vim
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-02-25 11:59:33 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-25 11:59:33 +0000
commit6d611de58c8e324491415da8e79c6bd3faa3e848 (patch)
treedf9157b48308e8685ae667ceaa24dca27deec72b /src/testdir/gen_opt_test.vim
parenta63fd8232895bbf6751087d90fd15c8ea45f1cf0 (diff)
patch 9.0.1353: too many "else if" statements to handle option valuesv9.0.1353
Problem: Too many "else if" statements to handle option values. Solution: Add more functions to handle option value changes. (Yegappan Lakshmanan, closes #12058)
Diffstat (limited to 'src/testdir/gen_opt_test.vim')
-rw-r--r--src/testdir/gen_opt_test.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim
index a18aa66dfa..6124bb2d2b 100644
--- a/src/testdir/gen_opt_test.vim
+++ b/src/testdir/gen_opt_test.vim
@@ -104,6 +104,7 @@ let test_values = {
\ 'guifont': [['', fontname], []],
\ 'guifontwide': [['', fontname], []],
\ 'guifontset': [['', fontname], []],
+ \ 'guioptions': [['', 'a'], ['Q']],
\ 'helplang': [['', 'de', 'de,it'], ['xxx']],
\ 'highlight': [['', 'e:Error'], ['xxx']],
\ 'imactivatekey': [['', 'S-space'], ['xxx']],