mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2-118
This commit is contained in:
parent
bb9c7d1cc5
commit
2a9e4df9fb
@ -976,7 +976,7 @@ wait_return(redraw)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (msg_scrolled > Rows - 2
|
else if (msg_scrolled > Rows - 2
|
||||||
&& (c == 'j' || c == K_DOWN || c == 'd'))
|
&& (c == 'j' || c == K_DOWN || c == 'd' || c == 'f'))
|
||||||
c = K_IGNORE;
|
c = K_IGNORE;
|
||||||
}
|
}
|
||||||
} while ((had_got_int && c == Ctrl_C)
|
} while ((had_got_int && c == Ctrl_C)
|
||||||
@ -2504,7 +2504,6 @@ do_more_prompt(typed_char)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'u': /* Up half a page */
|
case 'u': /* Up half a page */
|
||||||
case K_PAGEUP:
|
|
||||||
scroll = -(Rows / 2);
|
scroll = -(Rows / 2);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -2513,10 +2512,12 @@ do_more_prompt(typed_char)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'b': /* one page back */
|
case 'b': /* one page back */
|
||||||
|
case K_PAGEUP:
|
||||||
scroll = -(Rows - 1);
|
scroll = -(Rows - 1);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ' ': /* one extra page */
|
case ' ': /* one extra page */
|
||||||
|
case 'f':
|
||||||
case K_PAGEDOWN:
|
case K_PAGEDOWN:
|
||||||
case K_LEFTMOUSE:
|
case K_LEFTMOUSE:
|
||||||
scroll = Rows - 1;
|
scroll = Rows - 1;
|
||||||
|
@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
118,
|
||||||
/**/
|
/**/
|
||||||
117,
|
117,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user