1
1

Centering the cursor when the thing being undone or redone is currently

off the screen.

See https://lists.gnu.org/archive/html/nano-devel/2016-02/msg00104.html.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5672 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Benno Schulenberg 2016-02-23 12:18:10 +00:00
родитель 287f78a26b
Коммит a9a32d6d89
3 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -3,6 +3,8 @@
Rename a variable, for contrast and correctness. Rename a variable, for contrast and correctness.
* src/cut.c (do_copy_text): Don't move the cursor when copying a * src/cut.c (do_copy_text): Don't move the cursor when copying a
backwardly marked region. This fixes Savannah bug #46980. backwardly marked region. This fixes Savannah bug #46980.
* src/text.c (do_undo, do_redo): Center the cursor when the
thing being undone or redone is currently off the screen.
2016-02-22 Chris Allegretta <chrisa@asty.org> 2016-02-22 Chris Allegretta <chrisa@asty.org>
* Add ability to kill the trailing spaces when justifying * Add ability to kill the trailing spaces when justifying

Просмотреть файл

@ -2657,6 +2657,7 @@ int main(int argc, char **argv)
do_cursorpos(TRUE); do_cursorpos(TRUE);
currmenu = MMAIN; currmenu = MMAIN;
focusing = FALSE;
/* Turn the cursor on when waiting for input. */ /* Turn the cursor on when waiting for input. */
curs_set(1); curs_set(1);

Просмотреть файл

@ -606,6 +606,7 @@ void do_undo(void)
openfile->placewewant = xplustabs(); openfile->placewewant = xplustabs();
openfile->totsize = u->wassize; openfile->totsize = u->wassize;
set_modified(); set_modified();
focusing = TRUE;
} }
/* Redo the last thing(s) we undid. */ /* Redo the last thing(s) we undid. */
@ -740,6 +741,7 @@ void do_redo(void)
openfile->placewewant = xplustabs(); openfile->placewewant = xplustabs();
openfile->totsize = u->newsize; openfile->totsize = u->newsize;
set_modified(); set_modified();
focusing = TRUE;
} }
#endif /* !NANO_TINY */ #endif /* !NANO_TINY */