mirror of
https://github.com/neovim/neovim.git
synced 2025-11-22 10:06:33 +00:00
refactor(uncrustify): set maximum number of consecutive newlines to 2 (#18695)
This commit is contained in:
@@ -359,7 +359,6 @@ void terminal_check_size(Terminal *term)
|
||||
vterm_get_size(term->vt, &curheight, &curwidth);
|
||||
uint16_t width = 0, height = 0;
|
||||
|
||||
|
||||
FOR_ALL_TAB_WINDOWS(tp, wp) {
|
||||
if (wp->w_buffer && wp->w_buffer->terminal == term) {
|
||||
const uint16_t win_width =
|
||||
@@ -722,7 +721,6 @@ static int get_rgb(VTermState *state, VTermColor color)
|
||||
return RGB_(color.rgb.red, color.rgb.green, color.rgb.blue);
|
||||
}
|
||||
|
||||
|
||||
void terminal_get_line_attributes(Terminal *term, win_T *wp, int linenr, int *term_attrs)
|
||||
{
|
||||
int height, width;
|
||||
@@ -1364,7 +1362,6 @@ end:
|
||||
// }}}
|
||||
// terminal buffer refresh & misc {{{
|
||||
|
||||
|
||||
static void fetch_row(Terminal *term, int row, int end_col)
|
||||
{
|
||||
int col = 0;
|
||||
|
||||
Reference in New Issue
Block a user