My OS version is MAC OS X 10.10, installed with vim(7.3) and cscope(15.8a). But it can't show index and line number properly: the screenshot is here
The configuration about the cscope in the ~/.vimrc is as follows:
if has("cscope")
set csprg=/usr/local/bin/cscope
set csto=1
set cst
set nocsverb
" add any database in current directory
if filereadable("cscope.out")
cs add cscope.out
endif
set csverb
endif
I don't know where the problem is, please give me some tips, thanks in advance.