mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +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:
@@ -203,7 +203,9 @@ void ui_client_event_grid_line(Array args)
|
||||
|
||||
void ui_client_event_raw_line(GridLineEvent *g)
|
||||
{
|
||||
int grid = g->args[0], row = g->args[1], startcol = g->args[2];
|
||||
int grid = g->args[0];
|
||||
int row = g->args[1];
|
||||
int startcol = g->args[2];
|
||||
Integer endcol = startcol + g->coloff;
|
||||
Integer clearcol = endcol + g->clear_width;
|
||||
LineFlags lineflags = g->wrap ? kLineFlagWrap : 0;
|
||||
|
Reference in New Issue
Block a user