I use cscope with vim and it works great Ctrl+] for going to a definition) and Ctrl+T to pop out of the tag stack. When I tried to use it with gvim, Ctrl+T opens a new tab. So I created a .gvimrc file under $HOME, and
nmap <C-S-t> <ESC>:tabnew<cr>
imap <C-S-t> <ESC>:tabnew<cr>i
and the new mappings work but it does not overwrite the default functionality of C-t for :tabnew. Where can I change that ?
If I cannot change gvim behavior, atleast let me change cscope to using a different key combination so that it does not conflict. Please help !
Thanks