mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
build(lint): remove unnecessary clint.py rules
Uncrustify is the source of truth where possible. Remove any redundant checks from clint.py.
This commit is contained in:
@@ -21,9 +21,9 @@ enum {
|
||||
|
||||
/// While redrawing the screen this flag is set. It means the screen size
|
||||
/// ('lines' and 'rows') must not be changed.
|
||||
EXTERN bool updating_screen INIT(= 0);
|
||||
EXTERN bool updating_screen INIT( = 0);
|
||||
|
||||
EXTERN match_T screen_search_hl INIT(= { 0 }); // used for 'hlsearch' highlight matching
|
||||
EXTERN match_T screen_search_hl INIT( = { 0 }); // used for 'hlsearch' highlight matching
|
||||
|
||||
#define W_ENDCOL(wp) ((wp)->w_wincol + (wp)->w_width)
|
||||
#define W_ENDROW(wp) ((wp)->w_winrow + (wp)->w_height)
|
||||
|
Reference in New Issue
Block a user