junegunn/vim-easy-align

lookahead assertion

zdszero opened this issue · 0 comments

Hello! vim-easy-align is an awesome plugin!
But I just don't know how to use lookahead assertion or lookbehind assertion in regex mode
for example, I want to match all ' | ' but not ' \| ' , and I write regex like (?<!\\)\| but it doesn't work...