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 /src/nvim/options.lua | |
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 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 27f72f6441..c48366e205 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1848,6 +1848,13 @@ return { defaults={if_true={vi=false}} }, { + full_name='redrawdebug', abbreviation='rdb', + type='string', list='onecomma', scope={'global'}, + vi_def=true, + varname='p_rdb', + defaults={if_true={vi=''}} + }, + { full_name='redrawtime', abbreviation='rdt', type='number', scope={'global'}, vi_def=true, |