mirror of
https://github.com/vim/vim.git
synced 2025-07-24 10:45:12 -04:00
updated for version 7.0-139
This commit is contained in:
parent
adcb9497e8
commit
bc444827c2
12
src/edit.c
12
src/edit.c
@ -8822,7 +8822,11 @@ ins_pageup()
|
||||
if (mod_mask & MOD_MASK_CTRL)
|
||||
{
|
||||
/* <C-PageUp>: tab page back */
|
||||
goto_tabpage(-1);
|
||||
if (first_tabpage->tp_next != NULL)
|
||||
{
|
||||
start_arrow(&curwin->w_cursor);
|
||||
goto_tabpage(-1);
|
||||
}
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
@ -8881,7 +8885,11 @@ ins_pagedown()
|
||||
if (mod_mask & MOD_MASK_CTRL)
|
||||
{
|
||||
/* <C-PageDown>: tab page forward */
|
||||
goto_tabpage(0);
|
||||
if (first_tabpage->tp_next != NULL)
|
||||
{
|
||||
start_arrow(&curwin->w_cursor);
|
||||
goto_tabpage(0);
|
||||
}
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
@ -666,6 +666,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
139,
|
||||
/**/
|
||||
138,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user