0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.2415: no way to check for the cmdwin feature

Problem:    No way to check for the cmdwin feature, cmdline_hist is now always
            enabled.
Solution:   Add has('cmdwin') support. Skip arglist test on Windows
            temporarily.
This commit is contained in:
Bram Moolenaar
2021-01-26 22:42:21 +01:00
parent b7e2670b6a
commit 21829c5f2c
11 changed files with 53 additions and 13 deletions

View File

@@ -4651,6 +4651,13 @@ f_has(typval_T *argvars, typval_T *rettv)
},
{"cmdline_compl", 1},
{"cmdline_hist", 1},
{"cmdwin",
#ifdef FEAT_CMDWIN
1
#else
0
#endif
},
{"comments", 1},
{"conceal",
#ifdef FEAT_CONCEAL