-
Notifications
You must be signed in to change notification settings - Fork 180
Closed
Description
As you can see, DiffChange
option, which highlights the whole line with changes has color DiffRedDark
, and DiffText
option, which highlits the exact part of line that changed has color DiffRedLight
vim-code-dark/colors/codedark.vim
Lines 144 to 146 in 7fe0dc6
call <sid>hi('DiffChange', {}, s:cdDiffRedDark, 'none', {}) | |
call <sid>hi('DiffDelete', {}, s:cdDiffRedLight, 'none', {}) | |
call <sid>hi('DiffText', {}, s:cdDiffRedLight, 'none', {}) |
But definitions of these colors refers to the same xterm 256 colors which makes exact diff impossible to find in line
vim-code-dark/colors/codedark.vim
Lines 95 to 96 in 7fe0dc6
let s:cdDiffRedDark = {'gui': '#4B1818', 'cterm': s:cterm08, 'cterm256': '52'} | |
let s:cdDiffRedLight = {'gui': '#6F1313', 'cterm': s:cterm08, 'cterm256': '52'} |
Metadata
Metadata
Assignees
Labels
No labels