- Mac file writing supported too. Flag -M, --mac. Toggle
Meta-O (MacOS? OS-X? =-)
- New smooth scroll code by Ken Tyler. New flag -S, --smooth,
- changes to page_up() and page_down().
+ changes to page_up() and page_down(). Fixes to paging by
+ David Lawrence Ramsey.
- Bracket (brace, parens, etc) matching code by Ken Tyler.
New functions do_find_bracket(), changes to findnextstr(),
command is Meta-] (hope you dont mind since I already sold off
void page_down(void)
{
- if (editbot != filebot) {
- if (!ISSET(SMOOTHSCROLL)) {
+ if (!ISSET(SMOOTHSCROLL)) {
+ if (editbot != filebot) {
edit_update(editbot->next, CENTER);
center_cursor();
} else {
- edit_update(editbot, NONE);
- }
- } else {
- if (!ISSET(SMOOTHSCROLL)) {
while (current != filebot)
current = current->next;
edit_update(current, CENTER);
}
+ } else {
+ edit_update(editbot, NONE);
}
update_cursor();
}