after searching all over google for vsvim lookahead or lookbehind and on the wiki I can\'t seem to figure out how, or if it even supports lookahead or lookbehind (positives
For any newcomers, I'll copy the contents of this link here for the future:
http://ssiaf.blogspot.ru/2009/07/negative-lookbehind-in-vim.html
/\(Start\)\@
This will match the 'Date' in 'EndDate' and 'YesterdaysDate' but will not match 'StartDate'
/Start\(Date\)\@!
will match the 'Start' in 'Starting but not in 'StartDate'
/Start\(Date\)\@=
will match the 'Start' in 'StartDate' but not in 'Starting
/\(Start\)\@<=Date
will match the 'Date' in 'StartDate' but not in 'EndDate' and 'YesterdaysDate'