comparison src/optiondefs.h @ 33953:ab75ab5a9eb5 v9.0.2171

patch 9.0.2171: The options[] array is still not sorted alphabetically Commit: https://github.com/vim/vim/commit/ffba4e952b25c9257a7b0bd860b85fca2c1e65f4 Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Dec 16 14:14:36 2023 +0100 patch 9.0.2171: The options[] array is still not sorted alphabetically Problem: The options[] array is still not sorted alphabetically (after: v9.0.2154), causing test failures Solution: Sort the remaining items This causes an failure for the vim/vim-win32-installer builds, so make sure it is completely sorted. closes: #13690 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Dec 2023 14:30:04 +0100
parents 7777043c9393
children 36843e079f64
comparison
equal deleted inserted replaced
33952:13cad63b574f 33953:ab75ab5a9eb5
335 (char_u *)128L, 335 (char_u *)128L,
336 #else 336 #else
337 (char_u *)224L, 337 (char_u *)224L,
338 #endif 338 #endif
339 (char_u *)0L} SCTX_INIT}, 339 (char_u *)0L} SCTX_INIT},
340 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
341 (char_u *)NULL, PV_NONE, NULL, NULL,
342 {(char_u *)FALSE, (char_u *)FALSE}
343 SCTX_INIT},
344 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM, 340 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM,
345 #ifdef FEAT_RIGHTLEFT 341 #ifdef FEAT_RIGHTLEFT
346 (char_u *)&p_ari, PV_NONE, NULL, NULL, 342 (char_u *)&p_ari, PV_NONE, NULL, NULL,
347 #else 343 #else
348 (char_u *)NULL, PV_NONE, NULL, NULL, 344 (char_u *)NULL, PV_NONE, NULL, NULL,
352 (char_u *)NULL, PV_NONE, NULL, NULL, 348 (char_u *)NULL, PV_NONE, NULL, NULL,
353 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 349 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
354 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR, 350 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR,
355 (char_u *)&p_ambw, PV_NONE, did_set_ambiwidth, expand_set_ambiwidth, 351 (char_u *)&p_ambw, PV_NONE, did_set_ambiwidth, expand_set_ambiwidth,
356 {(char_u *)"single", (char_u *)0L} 352 {(char_u *)"single", (char_u *)0L}
353 SCTX_INIT},
354 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR,
355 (char_u *)NULL, PV_NONE, NULL, NULL,
356 {(char_u *)FALSE, (char_u *)FALSE}
357 SCTX_INIT}, 357 SCTX_INIT},
358 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM|P_CURSWANT, 358 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM|P_CURSWANT,
359 #ifdef FEAT_ARABIC 359 #ifdef FEAT_ARABIC
360 (char_u *)VAR_WIN, PV_ARAB, did_set_arabic, NULL, 360 (char_u *)VAR_WIN, PV_ARAB, did_set_arabic, NULL,
361 #else 361 #else
1760 #endif 1760 #endif
1761 SCTX_INIT}, 1761 SCTX_INIT},
1762 {"mousetime", "mouset", P_NUM|P_VI_DEF, 1762 {"mousetime", "mouset", P_NUM|P_VI_DEF,
1763 (char_u *)&p_mouset, PV_NONE, NULL, NULL, 1763 (char_u *)&p_mouset, PV_NONE, NULL, NULL,
1764 {(char_u *)500L, (char_u *)0L} SCTX_INIT}, 1764 {(char_u *)500L, (char_u *)0L} SCTX_INIT},
1765 {"mzquantum", "mzq", P_NUM,
1766 #ifdef FEAT_MZSCHEME
1767 (char_u *)&p_mzq, PV_NONE, did_set_mzquantum, NULL,
1768 #else
1769 (char_u *)NULL, PV_NONE, NULL, NULL,
1770 #endif
1771 {(char_u *)100L, (char_u *)100L} SCTX_INIT},
1765 {"mzschemedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, 1772 {"mzschemedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE,
1766 #if defined(DYNAMIC_MZSCHEME) 1773 #if defined(DYNAMIC_MZSCHEME)
1767 (char_u *)&p_mzschemedll, PV_NONE, NULL, NULL, 1774 (char_u *)&p_mzschemedll, PV_NONE, NULL, NULL,
1768 {(char_u *)DYNAMIC_MZSCH_DLL, (char_u *)0L} 1775 {(char_u *)DYNAMIC_MZSCH_DLL, (char_u *)0L}
1769 #else 1776 #else
1778 #else 1785 #else
1779 (char_u *)NULL, PV_NONE, NULL, NULL, 1786 (char_u *)NULL, PV_NONE, NULL, NULL,
1780 {(char_u *)"", (char_u *)0L} 1787 {(char_u *)"", (char_u *)0L}
1781 #endif 1788 #endif
1782 SCTX_INIT}, 1789 SCTX_INIT},
1783 {"mzquantum", "mzq", P_NUM,
1784 #ifdef FEAT_MZSCHEME
1785 (char_u *)&p_mzq, PV_NONE, did_set_mzquantum, NULL,
1786 #else
1787 (char_u *)NULL, PV_NONE, NULL, NULL,
1788 #endif
1789 {(char_u *)100L, (char_u *)100L} SCTX_INIT},
1790 {"novice", NULL, P_BOOL|P_VI_DEF, 1790 {"novice", NULL, P_BOOL|P_VI_DEF,
1791 (char_u *)NULL, PV_NONE, NULL, NULL, 1791 (char_u *)NULL, PV_NONE, NULL, NULL,
1792 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 1792 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
1793 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, 1793 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP,
1794 (char_u *)&p_nf, PV_NF, did_set_nrformats, expand_set_nrformats, 1794 (char_u *)&p_nf, PV_NF, did_set_nrformats, expand_set_nrformats,
2791 {(char_u *)"", (char_u *)""} 2791 {(char_u *)"", (char_u *)""}
2792 SCTX_INIT}, 2792 SCTX_INIT},
2793 {"visualbell", "vb", P_BOOL|P_VI_DEF, 2793 {"visualbell", "vb", P_BOOL|P_VI_DEF,
2794 (char_u *)&p_vb, PV_NONE, NULL, NULL, 2794 (char_u *)&p_vb, PV_NONE, NULL, NULL,
2795 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 2795 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2796 {"w1200", NULL, P_NUM|P_VI_DEF,
2797 (char_u *)NULL, PV_NONE, NULL, NULL,
2798 {(char_u *)0L, (char_u *)0L} SCTX_INIT},
2796 {"w300", NULL, P_NUM|P_VI_DEF, 2799 {"w300", NULL, P_NUM|P_VI_DEF,
2797 (char_u *)NULL, PV_NONE, NULL, NULL,
2798 {(char_u *)0L, (char_u *)0L} SCTX_INIT},
2799 {"w1200", NULL, P_NUM|P_VI_DEF,
2800 (char_u *)NULL, PV_NONE, NULL, NULL, 2800 (char_u *)NULL, PV_NONE, NULL, NULL,
2801 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, 2801 {(char_u *)0L, (char_u *)0L} SCTX_INIT},
2802 {"w9600", NULL, P_NUM|P_VI_DEF, 2802 {"w9600", NULL, P_NUM|P_VI_DEF,
2803 (char_u *)NULL, PV_NONE, NULL, NULL, 2803 (char_u *)NULL, PV_NONE, NULL, NULL,
2804 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, 2804 {(char_u *)0L, (char_u *)0L} SCTX_INIT},