forked from aniani/vim
patch 8.2.0643: terminal uses brown instead of dark yellow
Problem: Terminal uses brown instead of dark yellow. (Romain Lafourcade) Solution: Use color index 3 instead of 130. (closes #5993)
This commit is contained in:
@@ -847,7 +847,7 @@ ex_terminal(exarg_T *eap)
|
||||
|
||||
// default to close when the shell exits
|
||||
if (opt.jo_term_finish == NUL)
|
||||
opt.jo_term_finish = 'c';
|
||||
opt.jo_term_finish = TL_FINISH_CLOSE;
|
||||
}
|
||||
|
||||
if (eap->addr_count > 0)
|
||||
@@ -1930,7 +1930,7 @@ set_terminal_mode(term_T *term, int normal_mode)
|
||||
}
|
||||
|
||||
/*
|
||||
* Called after the job if finished and Terminal mode is not active:
|
||||
* Called after the job is finished and Terminal mode is not active:
|
||||
* Move the vterm contents into the scrollback buffer and free the vterm.
|
||||
*/
|
||||
static void
|
||||
@@ -2698,7 +2698,7 @@ color2index(VTermColor *color, int fg, int *boldp)
|
||||
case 1: return lookup_color( 0, fg, boldp) + 1; // black
|
||||
case 2: return lookup_color( 4, fg, boldp) + 1; // dark red
|
||||
case 3: return lookup_color( 2, fg, boldp) + 1; // dark green
|
||||
case 4: return lookup_color( 6, fg, boldp) + 1; // brown
|
||||
case 4: return lookup_color( 7, fg, boldp) + 1; // dark yellow
|
||||
case 5: return lookup_color( 1, fg, boldp) + 1; // dark blue
|
||||
case 6: return lookup_color( 5, fg, boldp) + 1; // dark magenta
|
||||
case 7: return lookup_color( 3, fg, boldp) + 1; // dark cyan
|
||||
|
@@ -746,6 +746,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
643,
|
||||
/**/
|
||||
642,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user