summaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-14 19:54:54 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-14 19:54:54 +0200
commit58b853460add42098ab08017df9e030fb14fd34b (patch)
tree7768969fbdae9365c1e11a63a0eb268ab1159ee6 /src/syntax.c
parente59215c7dcae17b03daf39517560cfaa03314f5a (diff)
patch 7.4.2213v7.4.2213
Problem: Cannot highlight the "~" lines at the end of a window differently. Solution: Add the EndOfBuffer highlighting. (Marco Hinz, James McCoy)
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 19f9bc4686..ff8cbb431b 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6789,6 +6789,7 @@ static char *(highlight_init_both[]) =
"StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold"),
CENT("StatusLineNC term=reverse cterm=reverse",
"StatusLineNC term=reverse cterm=reverse gui=reverse"),
+ "default link EndOfBuffer NonText",
#ifdef FEAT_WINDOWS
CENT("VertSplit term=reverse cterm=reverse",
"VertSplit term=reverse cterm=reverse gui=reverse"),