For some reason, pressing ctrl+i is sending a TAB command instead of executing evil-jump-forward. Viewing the lossage, I see:
C-o [evil-jump-backward]
TAB [c-indent-line-or-region]
From describe-bindings I see:
<C-i> evil-jump-forward
I've even updated my .spacemacs file:
(global-set-key (kbd "C-i") 'evil-jump-forward)
..but this has the same result. Any ideas on what could be the issue?