diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-05-08 18:36:03 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-06-14 20:31:14 +0200 |
commit | 16ae369474b0605716a962b60337421a9fc8741f (patch) | |
tree | bb44cd83f0fe6d1ca727e00affd67a4f600627a8 /runtime | |
parent | 6650588c4a89616249e964631dad17a66e1c6592 (diff) | |
download | rneovim-16ae369474b0605716a962b60337421a9fc8741f.tar.gz rneovim-16ae369474b0605716a962b60337421a9fc8741f.tar.bz2 rneovim-16ae369474b0605716a962b60337421a9fc8741f.zip |
screen.c: make more highlights window specific
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 2097cbf32b..bb5cfb4a80 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6778,9 +6778,16 @@ A jump table for the options with a short description can be found at |Q_op|. Window-local highlights. Comma-delimited list of |group-name| pairs "{hl-builtin}:{hl-group},..." where each {hl-builtin} is a group (from |highlight-groups|) to be overridden by {hl-group} in the window where - this option was set. - Currently |hl-Normal| and |hl-NormalNC| can be overridden. - Useful for changing the background color. Example: > + this option was set. Only builting ui highlights are supported, not + syntax highlighting. For that purpose, use |:ownsyntax|. + + Most highlights occuring within the frame of a window are supported. + Highlights of vertical separators are determined by the window to the + left of the separator. The highlight of a tabpage in |tabline| is + determined by the last focused window in the tabpage. Highlights of + the popupmenu are determined by the current window. Highlights in the + message area are not overridable. Example for overriding the + backgrond color: > set winhighlight=Normal:MyNormal,NormalNC:MyNormalNC < *'winfixheight'* *'wfh'* *'nowinfixheight'* *'nowfh'* |