comparison src/terminal.c @ 16778:eda4d65f232c v8.1.1391

patch 8.1.1391: no popup window support commit https://github.com/vim/vim/commit/4d784b21d14fc66e98a2b07f70343cdd4acd62aa Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 25 19:51:39 2019 +0200 patch 8.1.1391: no popup window support Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 May 2019 20:00:08 +0200
parents 695d9ef00b03
children fc58fee685e2
comparison
equal deleted inserted replaced
16777:20d51e99dd6a 16778:eda4d65f232c
3255 term_line2screenline(screen, &pos, max_col); 3255 term_line2screenline(screen, &pos, max_col);
3256 } 3256 }
3257 else 3257 else
3258 pos.col = 0; 3258 pos.col = 0;
3259 3259
3260 screen_line(term->tl_toprow + pos.row, 0, pos.col, Columns, FALSE); 3260 screen_line(term->tl_toprow + pos.row, 0, pos.col, Columns, 0);
3261 } 3261 }
3262 3262
3263 term->tl_dirty_row_start = MAX_ROW; 3263 term->tl_dirty_row_start = MAX_ROW;
3264 term->tl_dirty_row_end = 0; 3264 term->tl_dirty_row_end = 0;
3265 } 3265 }
3366 3366
3367 screen_line(wp->w_winrow + pos.row 3367 screen_line(wp->w_winrow + pos.row
3368 #ifdef FEAT_MENU 3368 #ifdef FEAT_MENU
3369 + winbar_height(wp) 3369 + winbar_height(wp)
3370 #endif 3370 #endif
3371 , wp->w_wincol, pos.col, wp->w_width, FALSE); 3371 , wp->w_wincol, pos.col, wp->w_width, 0);
3372 } 3372 }
3373 term->tl_dirty_row_start = MAX_ROW; 3373 term->tl_dirty_row_start = MAX_ROW;
3374 term->tl_dirty_row_end = 0; 3374 term->tl_dirty_row_end = 0;
3375 } 3375 }
3376 3376