diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-06-14 20:32:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 20:32:16 +0200 |
commit | 7918845215855814cf16b483fb0bec9cdad313d2 (patch) | |
tree | 7c4b17c92f72df637d096e43ccbd00891a896e87 /runtime | |
parent | 6650588c4a89616249e964631dad17a66e1c6592 (diff) | |
parent | ad73a70e5a1c7da58d7afbb70310c14c62b2519d (diff) | |
download | rneovim-7918845215855814cf16b483fb0bec9cdad313d2.tar.gz rneovim-7918845215855814cf16b483fb0bec9cdad313d2.tar.bz2 rneovim-7918845215855814cf16b483fb0bec9cdad313d2.zip |
Merge pull request #6700 from bfredl/winhl
window specific ui highlighting: part 2
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'* |