diff src/option.h @ 9665:b193bdb6ea25 v7.4.2109

commit https://github.com/vim/vim/commit/ad9c2a08f0509294269a2f11a59a438b944bdd5a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 27 23:26:04 2016 +0200 patch 7.4.2109 Problem: Setting 'display' to "lastline" is a drastic change, while omitting it results in lots of "@" lines. Solution: Add "truncate" to show "@@@" for a truncated line.
author Christian Brabandt <cb@256bit.org>
date Wed, 27 Jul 2016 23:30:05 +0200
parents b2aada04d84e
children 4eea48b76d03
line wrap: on
line diff
--- a/src/option.h
+++ b/src/option.h
@@ -454,10 +454,11 @@ EXTERN char_u	*p_dir;		/* 'directory' */
 EXTERN char_u	*p_dy;		/* 'display' */
 EXTERN unsigned	dy_flags;
 #ifdef IN_OPTION_C
-static char *(p_dy_values[]) = {"lastline", "uhex", NULL};
+static char *(p_dy_values[]) = {"lastline", "truncate", "uhex", NULL};
 #endif
 #define DY_LASTLINE		0x001
-#define DY_UHEX			0x002
+#define DY_TRUNCATE		0x002
+#define DY_UHEX			0x004
 EXTERN int	p_ed;		/* 'edcompatible' */
 #ifdef FEAT_WINDOWS
 EXTERN char_u	*p_ead;		/* 'eadirection' */