One of the projects I’m working on uses ClearCase.
I am developing on Windows 7, with cygwin.
I edit in Vim.
To get integration between Vim and ClearCase, I’m using the ccase.vim plugin.
However, I need to make a couple of changes to the default to get it to work.
- In my _vimrc file, add this:
set shell=C:/cygwin/bin/bash - In ccase.vim, replace all of the lines that look like this:
let l:file = resolve (expand("%:p"))
to:
let l:file = resolve (expand("%:p:gs?\\?/?"))
I didn’t have to do that on the XP machine I was using before.
I don’t know what’s different.
But the above steps fix it.