Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change colors for ":sign" area in VIM?

Tags:

vim

VIM supports :sign command that is widely used in debuggers to display graphical breakpoints to the left. How can i find correct names for background and foreground colors of this area in order to change them?

like image 825
grigoryvp Avatar asked Dec 22 '22 13:12

grigoryvp


1 Answers

I believe you're looking for the SignColumn highlight group. For future reference, I found this by running :help highlight, then running the snippet found there that displays all active highlight groups (pasted here for convenience).

:so $VIMRUNTIME/syntax/hitest.vim
like image 189
Randy Morris Avatar answered Jan 21 '23 21:01

Randy Morris