comparison src/globals.h @ 31726:122cfa668b95 v9.0.1195

patch 9.0.1195: restoring KeyTyped when building statusline not tested Commit: https://github.com/vim/vim/commit/378e6c03f98efc88e8c2675e05a548f9bb7889a1 Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Jan 14 11:46:49 2023 +0000 patch 9.0.1195: restoring KeyTyped when building statusline not tested Problem: Restoring KeyTyped when building statusline not tested. Solution: Add a test. Clean up and fix other tests. (closes https://github.com/vim/vim/issues/11815)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Jan 2023 13:00:05 +0100
parents 2f1af1b2f82d
children 6377d791dcd1
comparison
equal deleted inserted replaced
31725:fe59eda87b30 31726:122cfa668b95
2041 // Skip win_fix_scroll() call for 'splitkeep' when closing tab page. 2041 // Skip win_fix_scroll() call for 'splitkeep' when closing tab page.
2042 EXTERN int skip_win_fix_scroll INIT(= FALSE); 2042 EXTERN int skip_win_fix_scroll INIT(= FALSE);
2043 // Skip update_topline() call while executing win_fix_scroll(). 2043 // Skip update_topline() call while executing win_fix_scroll().
2044 EXTERN int skip_update_topline INIT(= FALSE); 2044 EXTERN int skip_update_topline INIT(= FALSE);
2045 2045
2046 // 'showcmd' buffer shared between normal.c and statusline.c 2046 // 'showcmd' buffer shared between normal.c and statusline code
2047 #define SHOWCMD_BUFLEN (SHOWCMD_COLS + 1 + 30) 2047 #define SHOWCMD_BUFLEN (SHOWCMD_COLS + 1 + 30)
2048 EXTERN char_u showcmd_buf[SHOWCMD_BUFLEN]; 2048 EXTERN char_u showcmd_buf[SHOWCMD_BUFLEN];