1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-21 09:59:08 +03:00

Use egrep instead of grep for ERE

Some implementations of grep do not support extended regular
expressions (ERE). Using egrep instead seems to be more portable.
This commit is contained in:
dahlbaek 2018-06-22 20:35:36 +02:00
parent 16b6c17724
commit 28637cec9e

View File

@ -1 +1 @@
%<a-s>H$grep "foo\|bar"<ret>
%<a-s>H$egrep "foo|bar"<ret>