summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-11-03 16:36:44 +0000
committervimboss <devnull@localhost>2009-11-03 16:36:44 +0000
commit7dca9575583b7a7b174f70b3b085bfe45ec63c81 (patch)
tree12255a47f08eed001c4aaf5da276c18817cea4e1
parent11e705336c460536695343e7e76f5ad070006536 (diff)
downloadvim-7dca9575583b7a7b174f70b3b085bfe45ec63c81.tar.gz
updated for version 7.2-281v7.2.281v7-2-281
-rw-r--r--src/screen.c30
-rw-r--r--src/version.c2
2 files changed, 28 insertions, 4 deletions
diff --git a/src/screen.c b/src/screen.c
index 7570b6f1..b7107b62 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -3008,11 +3008,33 @@ win_line(wp, lnum, startrow, endrow, nochange)
mb_ptr_adv(ptr);
}
-#ifdef FEAT_VIRTUALEDIT
- /* When 'virtualedit' is set the end of the line may be before the
- * start of the displayed part. */
- if (vcol < v && *ptr == NUL && virtual_active())
+#if defined(FEAT_SYN_HL) || defined(FEAT_VIRTUALEDIT) || defined(FEAT_VISUAL)
+ /* When:
+ * - 'cuc' is set, or
+ * - 'virtualedit' is set, or
+ * - the visual mode is active,
+ * the end of the line may be before the start of the displayed part.
+ */
+ if (vcol < v && (
+# ifdef FEAT_SYN_HL
+ wp->w_p_cuc
+# if defined(FEAT_VIRTUALEDIT) || defined(FEAT_VISUAL)
+ ||
+# endif
+# endif
+# ifdef FEAT_VIRTUALEDIT
+ virtual_active()
+# ifdef FEAT_VISUAL
+ ||
+# endif
+# endif
+# ifdef FEAT_VISUAL
+ (VIsual_active && wp->w_buffer == curwin->w_buffer)
+# endif
+ ))
+ {
vcol = v;
+ }
#endif
/* Handle a character that's not completely on the screen: Put ptr at
diff --git a/src/version.c b/src/version.c
index a4214fc9..e6b9056a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 281,
+/**/
280,
/**/
279,