Skip to content

Commit

Permalink
change isearch color
Browse files Browse the repository at this point in the history
  • Loading branch information
adsr committed Apr 18, 2020
1 parent 2d11ddb commit 7488091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,7 @@ static void _cmd_isearch_prompt_cb(bview_t *bview_prompt, baction_t *action, voi
regex_len = bview_prompt->buffer->first_line->data_len;
if (regex_len < 1) return;

bview->isearch_rule = srule_new_single(regex, regex_len, 1, 0, TB_YELLOW);
bview->isearch_rule = srule_new_single(regex, regex_len, 1, TB_BOLD, TB_MAGENTA);
if (!bview->isearch_rule) return;

buffer_add_srule(bview->buffer, bview->isearch_rule);
Expand Down

0 comments on commit 7488091

Please sign in to comment.