Here is japanese discusstion
https://github.com/vim-jp/issues/issues/390#issuecomment-18181263
Thanks.
2013/05/21 Tue 9:16:55 UTC+9 mattn wrote:
> * Some plugins doesn't work
> * \%u is disabled
> * test64 contains tests for multi-byte
> * test95 doesn't pass without enc=utf-8
* Strange condition in the line 1094:
if (*regparse == 'n' || *regparse == 'n')
\%u seems to be disabled because of lack of testing.
See the comment in the line 1104.
Thanks,
Ken Takata
Some syntax hilighighting won't work even though re=1.
For example:
1. type "google"
2. :syn clear | syn match ErrorMsg "\<go*\|go"
Using vim that older than 970:
http://go-gyazo.appspot.com/a16424e8636121c6.png
Using vim that 970 or later:
Sorry I mistaken to write this post.
> Some syntax hilighighting won't work even though re=1.
Some syntax hilighighting won't work even though re=0.
I tested this after restarting vim each times.
On May 21, 2013 4:06 PM, "John Marriott" <basi...@internode.on.net> wrote:
> I have all patches for 7.3 from 1 to 1000. Setting regexpengine to 2 in my .vimrc
> [...]
> Of course this doesn't happen when regexpengine is 1.
As I understand it, the default setting is 0 for a reason. The new engine isn't going to handle all the cases the existing engine does. The intention of the default setting is to use the new one where it's better and fallback to the old one when needed, so I don't think you should generally be running with only the new engine active.
Cheers,
James
I found NFA regexp engine bug.
Prerequisite
vim 7.3.1004
set re=0
How to reproduce
vim -N -u NONE -i NONE --noplugin
o<Esc>
/\n* or /\_.*
Actual
gone infinite loop.
How to take back control. (on linux)
pgrep -lf
kill -9 nnn <-- nnn is vim process number checked by pgrep.
I attached patch.
Please check this.
Best regards,
Hirohito Higashi
* \%#
* \%23c \%23l
* \%<23c \%<23l
* \%>23c \%>23l
* Treat leading "*" as star character
* \_[
* \@!
https://gist.github.com/mattn/5626661
Please check this patch.
- Yasuhiro Matsumoto
Friday in 8 days, I assume, not Friday tomorrow?
https://gist.github.com/mattn/5626661
I added test96