junegunn / vim-easy-align

:sunflower: A Vim alignment plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lookahead assertion

zdszero opened this issue · 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...