Understanding behavior of backreferencing in vim

95 Views Asked by At

I have a file which contains this word:

Word

when I execute this command:

:s/\(\w\)\+/#\1#/

I got ## but as I know \w matches a character. Why I did not get it in backreferencing it ?

Now for this command

:s/\(\w\)\{1,}/#\1#/ I got #d#. why it is the last character and not the first ?

VIM - Vi IMproved 7.4 Ubuntu 16.04 LTS

1

There are 1 best solutions below

0
On

I can reproduce this with Vim 7.4.1689 (that ships with Ubuntu 16.04 LTS), but not any longer with Vim 8.0.55. :set re=1 (i.e. switching back to the old regexp engine) fixes the problem, too. So, it seems to be a bug in the new regexp engine that in the meantime has been fixed.