I have Vim 7.2 installed on Windows. In GVim, the <C-PageUp>
and <C-PageDown>
work for navigation between tabs by default. However, it doesn't work for Vim.
I have even added the below lines in _vimrc
, but it still does not work.
map <C-PageUp> :tabp<CR>
map <C-PageDown> :tabn<CR>
But, map and works.
map <C-left> :tabp<CR>
map <C-right> :tabn<CR>
Does anybody have a clue why?