You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cat test.txt
слово другое
слова другие
слову другому
$ grep 'слов.*друг' test.txt
слово другое
слова другие
слову другому
$ rg 'слов.*друг' test.txt
$ rg --version
ripgrep 0.3.1
The text was updated successfully, but these errors were encountered:
This appears to be a duplicate of #251 and was therefore fixed in 0473df1. I can confirm it's working fine on current master:
$ cat test
слово другое
слова другие
слову другому
$ grep 'слов.*друг' test
слово другое
слова другие
слову другому
$ rg 'слов.*друг' test
1:слово другое
2:слова другие
3:слову другому
I'll try to get a new release out in the next few days.
follow up to #251
The text was updated successfully, but these errors were encountered: