options: add -j, --jumpyscrolling, the counterpart of --smooth

master
Benno Schulenberg 2019-01-25 15:44:52 +01:00
parent 5dbd9c0043
commit 401e43969c
2 changed files with 18 additions and 3 deletions

View File

@ -858,6 +858,9 @@ void usage(void)
print_opt("-h", "--help", N_("Show this help text and exit"));
#ifndef NANO_TINY
print_opt("-i", "--autoindent", N_("Automatically indent new lines"));
#endif
print_opt("-j", "--jumpyscrolling", N_("Scroll per half-screen, not per line"));
#ifndef NANO_TINY
print_opt("-k", "--cutfromcursor", N_("Cut from cursor to end of line"));
#endif
#ifdef ENABLE_LINENUMBERS
@ -1985,6 +1988,7 @@ int main(int argc, char **argv)
{"showcursor", 0, NULL, 'g'},
#endif
{"help", 0, NULL, 'h'},
{"jumpyscrolling", 0, NULL, 'j'},
#ifdef ENABLE_LINENUMBERS
{"linenumbers", 0, NULL, 'l'},
#endif
@ -2086,7 +2090,7 @@ int main(int argc, char **argv)
while ((optchr =
getopt_long(argc, argv,
"ABC:DEFGHIKLMNOPQ:RST:UVWX:Y:Zabcdfghiklmno:pr:s:tuvwxyz$",
"ABC:DEFGHIKLMNOPQ:RST:UVWX:Y:Zabcdfghijklmno:pr:s:tuvwxyz$",
long_options, NULL)) != -1) {
switch (optchr) {
#ifndef NANO_TINY
@ -2162,7 +2166,7 @@ int main(int argc, char **argv)
break;
#ifndef NANO_TINY
case 'S':
SET(SMOOTH_SCROLL);
UNSET(JUMPY_SCROLLING);
break;
#endif
case 'T':
@ -2223,6 +2227,11 @@ int main(int argc, char **argv)
case 'i':
SET(AUTOINDENT);
break;
#endif
case 'j':
SET(JUMPY_SCROLLING);
break;
#ifndef NANO_TINY
case 'k':
SET(CUT_FROM_CURSOR);
break;
@ -2412,6 +2421,11 @@ int main(int argc, char **argv)
else
SET(NO_NEWLINES);
if (ISSET(JUMPY_SCROLLING))
UNSET(SMOOTH_SCROLL);
else
SET(SMOOTH_SCROLL);
/* If the user wants bold instead of reverse video for hilited text... */
if (ISSET(BOLD_TEXT))
hilite_attribute = A_BOLD;

View File

@ -542,7 +542,8 @@ enum
AFTER_ENDS,
LET_THEM_ZAP,
BREAK_LONG_LINES,
FINAL_NEWLINE
FINAL_NEWLINE,
JUMPY_SCROLLING
};
/* Flags for the menus in which a given function should be present. */