mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
build(lint): remove clint.py rules for braces #20880
Uncrustify is the source of truth where possible. Remove any redundant checks from clint.py. See also https://github.com/neovim/neovim/pull/18563
This commit is contained in:
@@ -46,8 +46,7 @@ static const struct modmasktable {
|
||||
|
||||
#define MOD_KEYS_ENTRY_SIZE 5
|
||||
|
||||
static char_u modifier_keys_table[] =
|
||||
{
|
||||
static char_u modifier_keys_table[] = {
|
||||
// mod mask with modifier without modifier
|
||||
MOD_MASK_SHIFT, '&', '9', '@', '1', // begin
|
||||
MOD_MASK_SHIFT, '&', '0', '@', '2', // cancel
|
||||
@@ -347,8 +346,7 @@ static struct mousetable {
|
||||
int button; // Which mouse button is it?
|
||||
bool is_click; // Is it a mouse button click event?
|
||||
bool is_drag; // Is it a mouse drag event?
|
||||
} mouse_table[] =
|
||||
{
|
||||
} mouse_table[] = {
|
||||
{ KE_LEFTMOUSE, MOUSE_LEFT, true, false },
|
||||
{ KE_LEFTDRAG, MOUSE_LEFT, false, true },
|
||||
{ KE_LEFTRELEASE, MOUSE_LEFT, false, false },
|
||||
|
Reference in New Issue
Block a user