forked from aniani/vim
Add the conceal patch from Vince Negri.
This commit is contained in:
@@ -534,11 +534,18 @@
|
||||
# define FEAT_SYN_HL
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +conceal 'conceal' option. Needs syntax highlighting
|
||||
* as this is how the concealed text is defined.
|
||||
*/
|
||||
#if defined(FEAT_BIG) && defined(FEAT_SYN_HL)
|
||||
# define FEAT_CONCEAL
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +spell spell checking
|
||||
*
|
||||
* Disabled for EBCDIC:
|
||||
* Doesn't work (SIGSEGV).
|
||||
* Disabled for EBCDIC: * Doesn't work (SIGSEGV).
|
||||
*/
|
||||
#if (defined(FEAT_NORMAL) || defined(PROTO)) && !defined(EBCDIC)
|
||||
# define FEAT_SPELL
|
||||
@@ -729,6 +736,13 @@
|
||||
# define FEAT_SCROLLBIND
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +cursorbind synchronization of split windows
|
||||
*/
|
||||
#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
|
||||
# define FEAT_CURSORBIND
|
||||
#endif
|
||||
|
||||
/*
|
||||
* +menu ":menu" command
|
||||
*/
|
||||
@@ -770,7 +784,8 @@
|
||||
&& (defined(FEAT_GUI_GTK) \
|
||||
|| (defined(FEAT_GUI_MOTIF) && defined(HAVE_XM_NOTEBOOK_H)) \
|
||||
|| defined(FEAT_GUI_MAC) \
|
||||
|| (defined(FEAT_GUI_MSWIN) && (!defined(_MSC_VER) || _MSC_VER > 1020)))
|
||||
|| (defined(FEAT_GUI_MSWIN) && !defined(WIN16) \
|
||||
&& (!defined(_MSC_VER) || _MSC_VER > 1020)))
|
||||
# define FEAT_GUI_TABLINE
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user