diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-02-08 16:16:16 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-02-08 18:02:55 +0100 |
commit | 625e990976540a0e2d2bccb98deb57d0919d1e89 (patch) | |
tree | f411e64b684b5e4a4772c57ffaefe77cd63e7d8c /src/nvim/optionstr.c | |
parent | 1ca4a8b1ddf5256ad53cf486d0b2125434168270 (diff) | |
download | rneovim-625e990976540a0e2d2bccb98deb57d0919d1e89.tar.gz rneovim-625e990976540a0e2d2bccb98deb57d0919d1e89.tar.bz2 rneovim-625e990976540a0e2d2bccb98deb57d0919d1e89.zip |
refactor(ui): cleanup 'redrawdebug', introduce "flush" mode
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 901477d869..7efbeadb2f 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -125,7 +125,8 @@ static char *(p_spo_values[]) = { "camel", "noplainbuffer", NULL }; static char *(p_icm_values[]) = { "nosplit", "split", NULL }; static char *(p_jop_values[]) = { "stack", "view", NULL }; static char *(p_tpf_values[]) = { "BS", "HT", "FF", "ESC", "DEL", "C0", "C1", NULL }; -static char *(p_rdb_values[]) = { "compositor", "nothrottle", "invalid", "nodelta", NULL }; +static char *(p_rdb_values[]) = { "compositor", "nothrottle", "invalid", "nodelta", "line", + "flush", NULL }; static char *(p_sloc_values[]) = { "last", "statusline", "tabline", NULL }; /// All possible flags for 'shm'. |