comparison src/evalfunc.c @ 23748:93f90f2ff4e9 v8.2.2415

patch 8.2.2415: no way to check for the cmdwin feature Commit: https://github.com/vim/vim/commit/21829c5f2c86cd525c8468121b4fc54c5d75bf6e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 26 22:42:21 2021 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jan 2021 22:45:04 +0100
parents 9092d2a4422a
children 0512923e54e1
comparison
equal deleted inserted replaced
23747:f0d11de94492 23748:93f90f2ff4e9
4649 0 4649 0
4650 #endif 4650 #endif
4651 }, 4651 },
4652 {"cmdline_compl", 1}, 4652 {"cmdline_compl", 1},
4653 {"cmdline_hist", 1}, 4653 {"cmdline_hist", 1},
4654 {"cmdwin",
4655 #ifdef FEAT_CMDWIN
4656 1
4657 #else
4658 0
4659 #endif
4660 },
4654 {"comments", 1}, 4661 {"comments", 1},
4655 {"conceal", 4662 {"conceal",
4656 #ifdef FEAT_CONCEAL 4663 #ifdef FEAT_CONCEAL
4657 1 4664 1
4658 #else 4665 #else