comparison src/optiondefs.h @ 20631:d6827bd31d1d v8.2.0869

patch 8.2.0869: it is not possible to customize the quickfix window contents Commit: https://github.com/vim/vim/commit/858ba06d5f577b187da0367b231f7fa9461cb32d Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 23:11:59 2020 +0200 patch 8.2.0869: it is not possible to customize the quickfix window contents Problem: It is not possible to customize the quickfix window contents. Solution: Add 'quickfixtextfunc'. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5465)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 23:15:03 +0200
parents 68c206d3a251
children ed00f0fbdaef
comparison
equal deleted inserted replaced
20630:b7bfe0a2b961 20631:d6827bd31d1d
2042 (char_u *)&p_pyx, PV_NONE, 2042 (char_u *)&p_pyx, PV_NONE,
2043 #else 2043 #else
2044 (char_u *)NULL, PV_NONE, 2044 (char_u *)NULL, PV_NONE,
2045 #endif 2045 #endif
2046 {(char_u *)DEFAULT_PYTHON_VER, (char_u *)0L} 2046 {(char_u *)DEFAULT_PYTHON_VER, (char_u *)0L}
2047 SCTX_INIT},
2048 {"quickfixtextfunc", "qftf", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM|P_SECURE,
2049 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
2050 (char_u *)&p_qftf, PV_NONE,
2051 {(char_u *)"", (char_u *)0L}
2052 #else
2053 (char_u *)NULL, PV_NONE,
2054 {(char_u *)NULL, (char_u *)NULL}
2055 #endif
2047 SCTX_INIT}, 2056 SCTX_INIT},
2048 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF, 2057 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF,
2049 #ifdef FEAT_TEXTOBJ 2058 #ifdef FEAT_TEXTOBJ
2050 (char_u *)&p_qe, PV_QE, 2059 (char_u *)&p_qe, PV_QE,
2051 {(char_u *)"\\", (char_u *)0L} 2060 {(char_u *)"\\", (char_u *)0L}