diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-15 08:04:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 08:04:49 +0800 |
commit | fa0dcde3d9f17f85baa9dd41aa751c123281ced3 (patch) | |
tree | ef8336f8d67f8dfb363cf9d755be7871ada567ca /src/nvim/vim_defs.h | |
parent | 05d354e2165c2c331a33949d49095eef3503a32f (diff) | |
download | rneovim-fa0dcde3d9f17f85baa9dd41aa751c123281ced3.tar.gz rneovim-fa0dcde3d9f17f85baa9dd41aa751c123281ced3.tar.bz2 rneovim-fa0dcde3d9f17f85baa9dd41aa751c123281ced3.zip |
vim-patch:9.1.0864: message history is fixed to 200 (#31215)
Problem: message history is fixed to 200
Solution: Add the 'msghistory' option, increase the default
value to 500 (Shougo Matsushita)
closes: vim/vim#16048
https://github.com/vim/vim/commit/4bd9b2b2467e696061104a029000e9824c6c609e
Co-authored-by: Shougo Matsushita <Shougo.Matsu@gmail.com>
Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat (limited to 'src/nvim/vim_defs.h')
-rw-r--r-- | src/nvim/vim_defs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/vim_defs.h b/src/nvim/vim_defs.h index f6b348e009..72aaa77533 100644 --- a/src/nvim/vim_defs.h +++ b/src/nvim/vim_defs.h @@ -2,7 +2,6 @@ // Some defines from the old feature.h #define SESSION_FILE "Session.vim" -#define MAX_MSG_HIST_LEN 200 #define SYS_OPTWIN_FILE "$VIMRUNTIME/optwin.vim" #define RUNTIME_DIRNAME "runtime" |