diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-05 02:19:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 02:19:05 -0700 |
commit | 21187e1c73e6887ce407164c98320555374387a9 (patch) | |
tree | 64a82a7930ce6f4a692b5a8fe1652889b1e03eb3 /src/nvim/options.lua | |
parent | a3fba5cafcf124946ea65a68fc1b9dfbeb197525 (diff) | |
download | rneovim-21187e1c73e6887ce407164c98320555374387a9.tar.gz rneovim-21187e1c73e6887ce407164c98320555374387a9.tar.bz2 rneovim-21187e1c73e6887ce407164c98320555374387a9.zip |
defaults: shortmess+=C #23907
Problem:
Completion messages such as "scanning tags" are noisy and generally not
useful on most systems. Most users probably aren't aware that this is
configurable.
Solution:
Set `shortmess+=C`.
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 c4a85969c0..2d6b049a48 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2233,7 +2233,7 @@ return { short_desc=N_("list of flags, reduce length of messages"), type='string', list='flags', scope={'global'}, varname='p_shm', - defaults={if_true="filnxtToOF"}, + defaults={if_true="filnxtToOCF"}, cb='did_set_shortmess' }, { |