1
0
forked from aniani/vim

patch 9.0.1379: functions for handling options are not ordered

Problem:    Functions for handling options are not ordered.
Solution:   Put functions in alphabetical order. (Yegappan Lakshmanan,
            closes #12101)
This commit is contained in:
Yegappan Lakshmanan
2023-03-04 19:57:32 +00:00
committed by Bram Moolenaar
parent c99cbf8f28
commit 5284b23e14
9 changed files with 1338 additions and 1320 deletions

View File

@@ -375,6 +375,7 @@ func Test_python3_opt_reset_local_to_global()
\ ['include', 'ginc', 'linc', ''],
\ ['dict', 'gdict', 'ldict', ''],
\ ['thesaurus', 'gtsr', 'ltsr', ''],
\ ['thesaurusfunc', 'Gtsrfu', 'Ltsrfu', ''],
\ ['formatprg', 'gfprg', 'lfprg', ''],
\ ['errorformat', '%f:%l:%m', '%s-%l-%m', ''],
\ ['grepprg', 'ggprg', 'lgprg', ''],
@@ -408,9 +409,13 @@ func Test_python3_opt_reset_local_to_global()
" Set the global and window-local option values and then clear the
" window-local option value.
let wopts = [
\ ['fillchars', 'fold:>', 'fold:+', ''],
\ ['listchars', 'tab:>>', 'tab:--', ''],
\ ['scrolloff', 5, 10, -1],
\ ['showbreak', '>>', '++', ''],
\ ['sidescrolloff', 6, 12, -1],
\ ['statusline', '%<%f', '%<%F', '']]
\ ['statusline', '%<%f', '%<%F', ''],
\ ['virtualedit', 'block', 'insert', '']]
for opt in wopts
py3 << trim
pyopt = vim.bindeval("opt")