diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-05-18 23:57:18 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-05-19 00:15:40 +0200 |
commit | 97fc68850ff349a32f226117e04c37647966b2ff (patch) | |
tree | 7bc067ae3207bfaefd081e08fd8b195c8747777e /src/nvim/options.lua | |
parent | 11957f51cc541efe3e4d5379191fa85dcdc50c45 (diff) | |
download | rneovim-97fc68850ff349a32f226117e04c37647966b2ff.tar.gz rneovim-97fc68850ff349a32f226117e04c37647966b2ff.tar.bz2 rneovim-97fc68850ff349a32f226117e04c37647966b2ff.zip |
refactor!: remove 'terse' option
Having two methods of setting the same option is redundant and can be
potentially confusing. Recommend adding 's' to 'shortmess' instead.
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 9b9843e3f9..809d4ab48b 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2529,9 +2529,9 @@ return { }, { full_name='terse', - short_desc=N_("hides notification of search wrap"), + short_desc=N_("No description"), type='bool', scope={'global'}, - varname='p_terse', + varname='p_force_off', defaults={if_true=false} }, { |