This is probably an easy question for most vim users.
I want to map :tabn to <C-Tab>. It works perfectly while I'm in normal mode but when I'm in my insert mode (typing code) it just inserts tabs characters.
In my vimrc file I have
map <C-Tab> :tabn<CR>
Any ideas? Thanks!