0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0228

This commit is contained in:
Bram Moolenaar
2006-03-18 21:31:46 +00:00
parent be4d506b5f
commit 8d6ea5eb4f
2 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
*quickref.txt* For Vim version 7.0aa. Last change: 2006 Mar 16 *quickref.txt* For Vim version 7.0aa. Last change: 2006 Mar 18
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@@ -917,6 +917,7 @@ Short explanation of each option: *option-list*
'winaltkeys' 'wak' when the windows system handles ALT keys 'winaltkeys' 'wak' when the windows system handles ALT keys
'winheight' 'wh' minimum number of lines for the current window 'winheight' 'wh' minimum number of lines for the current window
'winfixheight' 'wfh' keep window height when opening/closing windows 'winfixheight' 'wfh' keep window height when opening/closing windows
'winfixwidth' 'wfw' keep window width when opening/closing windows
'winminheight' 'wmh' minimum number of lines for any window 'winminheight' 'wmh' minimum number of lines for any window
'winminwidth' 'wmw' minimal number of columns for any window 'winminwidth' 'wmw' minimal number of columns for any window
'winwidth' 'wiw' minimal number of columns for current window 'winwidth' 'wiw' minimal number of columns for current window

View File

@@ -1679,7 +1679,7 @@ process_message(void)
* mapped we want to use the mapping instead. */ * mapped we want to use the mapping instead. */
if (vk == VK_F10 if (vk == VK_F10
&& gui.menu_is_active && gui.menu_is_active
&& check_map(k10, State, FALSE, TRUE) == NULL) && check_map(k10, State, FALSE, TRUE, FALSE) == NULL)
break; break;
#endif #endif
if (GetKeyState(VK_SHIFT) & 0x8000) if (GetKeyState(VK_SHIFT) & 0x8000)
@@ -1793,7 +1793,7 @@ process_message(void)
/* Check for <F10>: Default effect is to select the menu. When <F10> is /* Check for <F10>: Default effect is to select the menu. When <F10> is
* mapped we need to stop it here to avoid strange effects (e.g., for the * mapped we need to stop it here to avoid strange effects (e.g., for the
* key-up event) */ * key-up event) */
if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE) == NULL) if (vk != VK_F10 || check_map(k10, State, FALSE, TRUE, FALSE) == NULL)
#endif #endif
DispatchMessage(&msg); DispatchMessage(&msg);
} }