0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00

updated for version 7.0-139

This commit is contained in:
Bram Moolenaar 2006-10-17 11:37:50 +00:00
parent adcb9497e8
commit bc444827c2
2 changed files with 12 additions and 2 deletions

View File

@ -8822,7 +8822,11 @@ ins_pageup()
if (mod_mask & MOD_MASK_CTRL) if (mod_mask & MOD_MASK_CTRL)
{ {
/* <C-PageUp>: tab page back */ /* <C-PageUp>: tab page back */
goto_tabpage(-1); if (first_tabpage->tp_next != NULL)
{
start_arrow(&curwin->w_cursor);
goto_tabpage(-1);
}
return; return;
} }
#endif #endif
@ -8881,7 +8885,11 @@ ins_pagedown()
if (mod_mask & MOD_MASK_CTRL) if (mod_mask & MOD_MASK_CTRL)
{ {
/* <C-PageDown>: tab page forward */ /* <C-PageDown>: tab page forward */
goto_tabpage(0); if (first_tabpage->tp_next != NULL)
{
start_arrow(&curwin->w_cursor);
goto_tabpage(0);
}
return; return;
} }
#endif #endif

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
139,
/**/ /**/
138, 138,
/**/ /**/