comparison src/optiondefs.h @ 32096:e7ab58f57ea3 v9.0.1379

patch 9.0.1379: functions for handling options are not ordered Commit: https://github.com/vim/vim/commit/5284b23e148063648be0ff46c730ca574e3ca9fa Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Mar 4 19:57:32 2023 +0000 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)
author Bram Moolenaar <Bram@vim.org>
date Sat, 04 Mar 2023 21:00:04 +0100
parents 45142117e206
children 059e89bf9316
comparison
equal deleted inserted replaced
32095:3b1944008f7e 32096:e7ab58f57ea3
2504 (char_u *)NULL, PV_NONE, NULL, 2504 (char_u *)NULL, PV_NONE, NULL,
2505 {(char_u *)0L, (char_u *)0L} 2505 {(char_u *)0L, (char_u *)0L}
2506 #endif 2506 #endif
2507 SCTX_INIT}, 2507 SCTX_INIT},
2508 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL, 2508 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2509 (char_u *)&T_NAME, PV_NONE, NULL, 2509 (char_u *)&T_NAME, PV_NONE, did_set_term,
2510 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2510 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2511 {"termbidi", "tbidi", P_BOOL|P_VI_DEF, 2511 {"termbidi", "tbidi", P_BOOL|P_VI_DEF,
2512 #ifdef FEAT_ARABIC 2512 #ifdef FEAT_ARABIC
2513 (char_u *)&p_tbidi, PV_NONE, NULL, 2513 (char_u *)&p_tbidi, PV_NONE, NULL,
2514 #else 2514 #else
2660 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2660 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2661 {"ttyscroll", "tsl", P_NUM|P_VI_DEF, 2661 {"ttyscroll", "tsl", P_NUM|P_VI_DEF,
2662 (char_u *)&p_ttyscroll, PV_NONE, NULL, 2662 (char_u *)&p_ttyscroll, PV_NONE, NULL,
2663 {(char_u *)999L, (char_u *)0L} SCTX_INIT}, 2663 {(char_u *)999L, (char_u *)0L} SCTX_INIT},
2664 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL, 2664 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL,
2665 (char_u *)&T_NAME, PV_NONE, NULL, 2665 (char_u *)&T_NAME, PV_NONE, did_set_term,
2666 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2666 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2667 {"undodir", "udir", P_STRING|P_EXPAND|P_ONECOMMA|P_NODUP|P_SECURE 2667 {"undodir", "udir", P_STRING|P_EXPAND|P_ONECOMMA|P_NODUP|P_SECURE
2668 |P_VI_DEF, 2668 |P_VI_DEF,
2669 #ifdef FEAT_PERSISTENT_UNDO 2669 #ifdef FEAT_PERSISTENT_UNDO
2670 (char_u *)&p_udir, PV_NONE, NULL, 2670 (char_u *)&p_udir, PV_NONE, NULL,