mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +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:
@@ -74,7 +74,8 @@ static void get_linematch_results(lua_State *lstate, mmfile_t *ma, mmfile_t *mb,
|
||||
int *decisions = NULL;
|
||||
size_t decisions_length = linematch_nbuffers(diff_begin, diff_length, 2, &decisions, iwhite);
|
||||
|
||||
int lnuma = start_a, lnumb = start_b;
|
||||
int lnuma = start_a;
|
||||
int lnumb = start_b;
|
||||
|
||||
int hunkstarta = lnuma;
|
||||
int hunkstartb = lnumb;
|
||||
|
Reference in New Issue
Block a user