comparison src/screen.c @ 818:1f929f3ca806 v7.0c03

updated for version 7.0c03
author vimboss
date Wed, 29 Mar 2006 21:18:24 +0000
parents 4f1b94b51e99
children 23f82b5d2814
comparison
equal deleted inserted replaced
817:6897668c467f 818:1f929f3ca806
3104 } 3104 }
3105 } 3105 }
3106 #endif 3106 #endif
3107 3107
3108 #ifdef FEAT_SYN_HL 3108 #ifdef FEAT_SYN_HL
3109 /* Cursor line highlighting for 'cursorline'. */ 3109 /* Cursor line highlighting for 'cursorline'. Not when Visual mode is
3110 if (wp->w_p_cul && lnum == wp->w_cursor.lnum) 3110 * active, because it's not clear what is selected then. */
3111 if (wp->w_p_cul && lnum == wp->w_cursor.lnum && !VIsual_active)
3111 { 3112 {
3112 line_attr = hl_attr(HLF_CUL); 3113 line_attr = hl_attr(HLF_CUL);
3113 area_highlighting = TRUE; 3114 area_highlighting = TRUE;
3114 } 3115 }
3115 #endif 3116 #endif