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/option_defs.h | |
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/option_defs.h')
-rw-r--r-- | src/nvim/option_defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index 777c86bd06..876acf2f87 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -678,7 +678,6 @@ EXTERN int p_tr; ///< 'tagrelative' EXTERN char_u *p_tags; ///< 'tags' EXTERN int p_tgst; ///< 'tagstack' EXTERN int p_tbidi; ///< 'termbidi' -EXTERN int p_terse; ///< 'terse' EXTERN int p_to; ///< 'tildeop' EXTERN int p_timeout; ///< 'timeout' EXTERN long p_tm; ///< 'timeoutlen' |