Closed edwmurph closed 4 years ago
had a revelation immediately after creating this issue that this library probably just uses vim's search for regex which has different syntax for look behind so for others who encounter this issue, the vim search syntax for lookbehind works here:
\(a\)\@<=bc
could support be added to align based on regex with lookbehind?
e.g. selecting this text in visual mode
then pressing
C-x
and entering the following regexdoesn't currently work. i verified entering the simpler regular expression
bc
aligns the above text as expected and that the regex syntax im using for lookbehind is valid.