mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
Re-integrate FEAT_SIGNS code, close #383
- omit FEAT_NETBEANS_INTG and FEAT_SIGN_ICONS - omit FEAT_GUI blocks
This commit is contained in:

committed by
Thiago de Arruda

parent
28b3659955
commit
d9f5cd6290
@@ -6014,6 +6014,8 @@ static char *(highlight_init_light[]) =
|
||||
CENT(
|
||||
"FoldColumn term=standout ctermbg=Grey ctermfg=DarkBlue",
|
||||
"FoldColumn term=standout ctermbg=Grey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue"),
|
||||
CENT("SignColumn term=standout ctermbg=Grey ctermfg=DarkBlue",
|
||||
"SignColumn term=standout ctermbg=Grey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue"),
|
||||
CENT("Visual term=reverse",
|
||||
"Visual term=reverse guibg=LightGrey"),
|
||||
CENT("DiffAdd term=bold ctermbg=LightBlue",
|
||||
@@ -6084,6 +6086,8 @@ static char *(highlight_init_dark[]) =
|
||||
CENT(
|
||||
"FoldColumn term=standout ctermbg=DarkGrey ctermfg=Cyan",
|
||||
"FoldColumn term=standout ctermbg=DarkGrey ctermfg=Cyan guibg=Grey guifg=Cyan"),
|
||||
CENT("SignColumn term=standout ctermbg=DarkGrey ctermfg=Cyan",
|
||||
"SignColumn term=standout ctermbg=DarkGrey ctermfg=Cyan guibg=Grey guifg=Cyan"),
|
||||
CENT("Visual term=reverse",
|
||||
"Visual term=reverse guibg=DarkGrey"),
|
||||
CENT("DiffAdd term=bold ctermbg=DarkBlue",
|
||||
@@ -7847,6 +7851,7 @@ static void highlight_list_two(int cnt, int attr)
|
||||
*/
|
||||
char_u *get_highlight_name(expand_T *xp, int idx)
|
||||
{
|
||||
//TODO: 'xp' is unused
|
||||
if (idx == highlight_ga.ga_len && include_none != 0)
|
||||
return (char_u *)"none";
|
||||
if (idx == highlight_ga.ga_len + include_none && include_default != 0)
|
||||
|
Reference in New Issue
Block a user