comparison src/normal.c @ 15436:29f3d59bb6f0 v8.1.0726

patch 8.1.0726: redrawing specifically for conceal feature commit https://github.com/vim/vim/commit/535d5b653a1eddf49ee11dc9639c5355ef023301 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 11 20:45:36 2019 +0100 patch 8.1.0726: redrawing specifically for conceal feature Problem: Redrawing specifically for conceal feature. Solution: Use generic redrawing methods.
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Jan 2019 21:00:06 +0100
parents b55b89692fd2
children 55ccc2d353bd
comparison
equal deleted inserted replaced
15435:739e0917d0b6 15436:29f3d59bb6f0
8510 #endif 8510 #endif
8511 0, 0) == OK) 8511 0, 0) == OK)
8512 { 8512 {
8513 #ifdef FEAT_CONCEAL 8513 #ifdef FEAT_CONCEAL
8514 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum) 8514 if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
8515 update_single_line(curwin, oldline); 8515 redrawWinline(curwin, oldline);
8516 #endif 8516 #endif
8517 /* When '#' is in 'cpoptions' ignore the count. */ 8517 /* When '#' is in 'cpoptions' ignore the count. */
8518 if (vim_strchr(p_cpo, CPO_HASH) != NULL) 8518 if (vim_strchr(p_cpo, CPO_HASH) != NULL)
8519 cap->count1 = 1; 8519 cap->count1 = 1;
8520 #ifdef FEAT_SYN_HL 8520 #ifdef FEAT_SYN_HL