tweaks: sort an option better, and reschedule a removal
parent
ae1ba5e259
commit
f5eeb92f40
10
src/rcfile.c
10
src/rcfile.c
|
@ -39,9 +39,6 @@
|
||||||
|
|
||||||
static const rcoption rcopts[] = {
|
static const rcoption rcopts[] = {
|
||||||
{"boldtext", BOLD_TEXT},
|
{"boldtext", BOLD_TEXT},
|
||||||
#ifdef ENABLE_LINENUMBERS
|
|
||||||
{"linenumbers", LINE_NUMBERS},
|
|
||||||
#endif
|
|
||||||
#ifdef ENABLE_JUSTIFY
|
#ifdef ENABLE_JUSTIFY
|
||||||
{"brackets", 0},
|
{"brackets", 0},
|
||||||
#endif
|
#endif
|
||||||
|
@ -51,6 +48,9 @@ static const rcoption rcopts[] = {
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_HISTORIES
|
#ifdef ENABLE_HISTORIES
|
||||||
{"historylog", HISTORYLOG},
|
{"historylog", HISTORYLOG},
|
||||||
|
#endif
|
||||||
|
#ifdef ENABLE_LINENUMBERS
|
||||||
|
{"linenumbers", LINE_NUMBERS},
|
||||||
#endif
|
#endif
|
||||||
{"morespace", MORE_SPACE},
|
{"morespace", MORE_SPACE},
|
||||||
#ifdef ENABLE_MOUSE
|
#ifdef ENABLE_MOUSE
|
||||||
|
@ -96,9 +96,9 @@ static const rcoption rcopts[] = {
|
||||||
{"backupdir", 0},
|
{"backupdir", 0},
|
||||||
{"backwards", BACKWARDS_SEARCH},
|
{"backwards", BACKWARDS_SEARCH},
|
||||||
{"casesensitive", CASE_SENSITIVE},
|
{"casesensitive", CASE_SENSITIVE},
|
||||||
{"cut", CUT_FROM_CURSOR}, /* deprecated form, remove in 2020 */
|
{"cut", CUT_FROM_CURSOR}, /* deprecated form, remove end of 2018 */
|
||||||
{"cutfromcursor", CUT_FROM_CURSOR},
|
{"cutfromcursor", CUT_FROM_CURSOR},
|
||||||
{"justifytrim", TRIM_BLANKS}, /* deprecated form, remove in 2020 */
|
{"justifytrim", TRIM_BLANKS}, /* deprecated form, remove end of 2018 */
|
||||||
{"locking", LOCKING},
|
{"locking", LOCKING},
|
||||||
{"matchbrackets", 0},
|
{"matchbrackets", 0},
|
||||||
{"noconvert", NO_CONVERT},
|
{"noconvert", NO_CONVERT},
|
||||||
|
|
Loading…
Reference in New Issue