diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-16 20:24:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-16 20:24:29 +0100 |
commit | 887748742deae3d6de7aa0fdbb042afe1ccf5e7a (patch) | |
tree | 3434eec0fb92e3c467c9fd94c0a5aeaae2e844cc /src/optiondefs.h | |
parent | 1889f499a4f248cd84e0e0bf6d0d820016774494 (diff) | |
download | vim-git-887748742deae3d6de7aa0fdbb042afe1ccf5e7a.tar.gz |
patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222
Problem: No good reason why text objects are only in larger builds.
Solution: Graduate +textobjects.
Diffstat (limited to 'src/optiondefs.h')
-rw-r--r-- | src/optiondefs.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/optiondefs.h b/src/optiondefs.h index 912209c02..be9a86e44 100644 --- a/src/optiondefs.h +++ b/src/optiondefs.h @@ -108,9 +108,7 @@ #endif #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH)) #define PV_PI OPT_BUF(BV_PI) -#ifdef FEAT_TEXTOBJ -# define PV_QE OPT_BUF(BV_QE) -#endif +#define PV_QE OPT_BUF(BV_QE) #define PV_RO OPT_BUF(BV_RO) #define PV_SI OPT_BUF(BV_SI) #define PV_SN OPT_BUF(BV_SN) @@ -2009,14 +2007,8 @@ static struct vimoption options[] = #endif SCTX_INIT}, {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF, -#ifdef FEAT_TEXTOBJ (char_u *)&p_qe, PV_QE, - {(char_u *)"\\", (char_u *)0L} -#else - (char_u *)NULL, PV_NONE, - {(char_u *)NULL, (char_u *)0L} -#endif - SCTX_INIT}, + {(char_u *)"\\", (char_u *)0L} SCTX_INIT}, {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB, (char_u *)&p_ro, PV_RO, {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |