I am trying to add shortcuts to cscope usage by adding the following statements in .vimrc file.
" cscope mappings
if has("cscope")
nmap <C-\>s :scs find s <C-R>=expand("<cword>")<CR><CR>
endif
I sourced the file using :so ~/.vimrc
in the vim application.
However, when i click Ctrl+\
and s
my terminal hangs. Please help. My shell is /usr/local/bin/tcsh
Thanks
Chidambaram