Tip #292: vim + cscope + cygwin
tip karma |
Rating 8/2, Viewed by 773
|
created: |
|
July 30, 2002 4:54 |
|
complexity: |
|
intermediate |
author: |
|
Giorgio Marzano |
|
as of Vim: |
|
6.0 |
I've found that vim + cscope + cygwin does not work. The problem seems to be that in
sprintf(cmd, "exec %s -dl -f %s", prog, csinfo[i].fname);
vim execs cscope with the "-dl" options, causing it to fail. It is probably a cscope bug, but a simple workaround is top build vim without thad "d":
sprintf(cmd, "exec %s -l -f %s", prog, csinfo[i].fname);
seems to work for me!
<<^P & auto filling of variables and text |
remember where you had ended reading help >>
Additional Notes
|