'GitGraphBranch' .. tostring(k % NUM_BRANCH_COLORS + 1)
Is it intentional to not do branch enumeration highlight like that:
'GitGraphBranch' .. tostring((k % NUM_BRANCH_COLORS + 1) / 2)
It works fine with odd number of highlights: 2, 4, 1, 3, 5 ... But still a little bit confusing when i tried to add 5 more)
'GitGraphBranch' .. tostring(k % NUM_BRANCH_COLORS + 1)Is it intentional to not do branch enumeration highlight like that:
'GitGraphBranch' .. tostring((k % NUM_BRANCH_COLORS + 1) / 2)It works fine with odd number of highlights: 2, 4, 1, 3, 5 ... But still a little bit confusing when i tried to add 5 more)