mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 00:46:30 +00:00
docs: add style rule regarding initialization
Specifically, specify that each initialization should be done on a separate line.
This commit is contained in:
@@ -710,7 +710,8 @@ void f_win_splitmove(typval_T *argvars, typval_T *rettv, EvalFuncData fptr)
|
||||
return;
|
||||
}
|
||||
|
||||
int flags = 0, size = 0;
|
||||
int flags = 0;
|
||||
int size = 0;
|
||||
|
||||
if (argvars[2].v_type != VAR_UNKNOWN) {
|
||||
dict_T *d;
|
||||
|
Reference in New Issue
Block a user