diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-07-09 17:56:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 17:56:30 +0200 |
commit | 7cf7c0a0b8e9ea41ccff8a9d8beb9186eb57d2e8 (patch) | |
tree | 4a320e5f2aa8c8ed367fab3f335647531bbdb5ff /runtime | |
parent | 48a5897ec44562f460e6b99562e4f4cda642f93d (diff) | |
parent | 2c2f160a276f7853fdabccc505a57061c0da6669 (diff) | |
download | rneovim-7cf7c0a0b8e9ea41ccff8a9d8beb9186eb57d2e8.tar.gz rneovim-7cf7c0a0b8e9ea41ccff8a9d8beb9186eb57d2e8.tar.bz2 rneovim-7cf7c0a0b8e9ea41ccff8a9d8beb9186eb57d2e8.zip |
Merge pull request #9575 from bfredl/redrawdebug
ui: implement better redrawdebug for the compositor
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index a421f6b5e7..8fc8a04df3 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4552,6 +4552,25 @@ A jump table for the options with a short description can be found at |Q_op|. set for the newly edited buffer. See 'modifiable' for disallowing changes to the buffer. + *'redrawdebug'* *'rdb'* +'redrawdebug' 'rdb' string (default '') + global + Flags to change the way redrawing works, for debugging purposes. + Most useful with 'writedelay' set to some reasonable value. + Supports the following flags: + compositor Indicate what redraws come from the compositor + by briefly flashing the redrawn regions in colors + indicating the redraw type. These are the highlight + groups used (and their default colors): + RedrawDebugNormal gui=reverse normal redraw passed through + RedrawDebugClear guibg=Yellow clear event passed through + RedrawDebugComposed guibg=Green redraw event modified by the + compositor (due to + overlapping grids, etc) + RedrawDebugRecompose guibg=Red redraw generated by the + compositor itself, due to a + grid being moved or deleted. + *'redrawtime'* *'rdt'* 'redrawtime' 'rdt' number (default 2000) global |