diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-12-16 13:50:12 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-12-20 21:43:42 +0100 |
commit | b42d8a43b9f1b3316e73108ebefc4850b1a2c65b (patch) | |
tree | 408d480448e23225291092952c789888e2b60f25 /src/nvim/options.lua | |
parent | f04087d8ba0623d1946eefe0f71d5f3e92d58c14 (diff) | |
download | rneovim-b42d8a43b9f1b3316e73108ebefc4850b1a2c65b.tar.gz rneovim-b42d8a43b9f1b3316e73108ebefc4850b1a2c65b.tar.bz2 rneovim-b42d8a43b9f1b3316e73108ebefc4850b1a2c65b.zip |
refactor(tui): use nvim_echo() for verbose terminfo
This is needed for #18375 for the obvious reasons.
note: verbose_terminfo_event is only temporarily needed
until the full TUI process refactor is merged.
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 1cf8ab3253..3c2fb1797b 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2690,7 +2690,7 @@ return { full_name='verbose', abbreviation='vbs', short_desc=N_("give informative messages"), type='number', scope={'global'}, - varname='p_verbose', + varname='p_verbose', redraw={'ui_option'}, defaults={if_true=0} }, { |