mirror of
https://github.com/neovim/neovim.git
synced 2025-09-10 05:18:16 +00:00
Remove FEAT_STL_OPT
'statusline', 'rulerformat' and special format of 'titlestring' and 'iconstring' options
This commit is contained in:
@@ -140,7 +140,6 @@
|
|||||||
#define FEAT_SEARCH_EXTRA
|
#define FEAT_SEARCH_EXTRA
|
||||||
#define FEAT_SMARTINDENT
|
#define FEAT_SMARTINDENT
|
||||||
#define FEAT_SPELL
|
#define FEAT_SPELL
|
||||||
#define FEAT_STL_OPT
|
|
||||||
#define FEAT_SYN_HL
|
#define FEAT_SYN_HL
|
||||||
#define FEAT_TAG_BINS
|
#define FEAT_TAG_BINS
|
||||||
#define FEAT_TAG_OLDSTATIC
|
#define FEAT_TAG_OLDSTATIC
|
||||||
|
@@ -7522,7 +7522,7 @@ int syn_get_final_id(int hl_id)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Translate the 'highlight' option into attributes in highlight_attr[] and
|
* Translate the 'highlight' option into attributes in highlight_attr[] and
|
||||||
* set up the user highlights User1..9. If FEAT_STL_OPT is in use, a set of
|
* set up the user highlights User1..9. A set of
|
||||||
* corresponding highlights to use on top of HLF_SNC is computed.
|
* corresponding highlights to use on top of HLF_SNC is computed.
|
||||||
* Called only when the 'highlight' option has been changed and upon first
|
* Called only when the 'highlight' option has been changed and upon first
|
||||||
* screen redraw after any :highlight command.
|
* screen redraw after any :highlight command.
|
||||||
@@ -7611,7 +7611,7 @@ int highlight_changed(void)
|
|||||||
return FAIL;
|
return FAIL;
|
||||||
attr = syn_id2attr(id);
|
attr = syn_id2attr(id);
|
||||||
p = end - 1;
|
p = end - 1;
|
||||||
#if defined(FEAT_STL_OPT) && defined(USER_HIGHLIGHT)
|
#ifdef USER_HIGHLIGHT
|
||||||
if (hlf == (int)HLF_SNC)
|
if (hlf == (int)HLF_SNC)
|
||||||
id_SNC = syn_get_final_id(id);
|
id_SNC = syn_get_final_id(id);
|
||||||
else if (hlf == (int)HLF_S)
|
else if (hlf == (int)HLF_S)
|
||||||
|
Reference in New Issue
Block a user