On Fri, Jan 14, 2011 at 11:10, Stephen Rasku <v...@srasku.net> wrote:

> I want to find anything that is not 'E' in the 11th column followed by
> an 'R' in 56th column.  Is this possible?
>
> I've tried the following and none have worked:
>
> /\%11v[^E].*\%56vR
> /\%11v[^E]\%56vR
> /\%11c[^E].*\%56cR
> /\%11c[^E]\%56cR
>
> I am using vim 7.0.
>
> Also, what's the difference between a virtual and a "real" column?
>


I'm not really sure about using columns but you could try it with just
straight regex:
/^.\{10\}[^E].\{44\}R

~Adam~

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to