From 00eff4b196521adc35d11c605decacef5bc98fa3 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 8 Apr 2025 11:11:38 +0800 Subject: vim-patch:9.1.1283: quickfix stack is limited to 10 items Problem: quickfix and location-list stack is limited to 10 items Solution: add the 'chistory' and 'lhistory' options to configure a larger quickfix/location list stack (64-bitman) closes: vim/vim#16920 https://github.com/vim/vim/commit/88d41ab270a8390a43da97a903b1a4d76b89d330 Co-authored-by: 64-bitman <60551350+64-bitman@users.noreply.github.com> Co-authored-by: Hirohito Higashi --- src/nvim/main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nvim/main.c') diff --git a/src/nvim/main.c b/src/nvim/main.c index 50677607eb..06c1124976 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -238,6 +238,9 @@ void early_init(mparm_T *paramp) TIME_MSG("inits 1"); set_lang_var(); // set v:lang and v:ctype + + // initialize global quickfix list + qf_init_quickfix_stack(); } #ifdef MAKE_LIB -- cgit