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
$ echo ê | ag ê # works
ê
$ echo ê | ag -i ê # does not work
$
Verifying other accent letters:
command with -i option:
for c in â ê î ô û á é í ó ú à è ì ò ù ã ẽ ĩ õ ũ ä ë ï ö ü; do echo ' testing' $c; echo 'âêîôûáéíóúàèìòùãẽĩõũäëïöü' | ag -i $c; done
output (not working):
testing â
testing ê
testing î
testing ô
testing û
testing á
testing é
testing í
testing ó
testing ú
testing à
testing è
testing ì
testing ò
testing ù
testing ã
testing ẽ
testing ĩ
testing õ
testing ũ
testing ä
testing ë
testing ï
testing ö
testing ü
command without -i option:
for c in â ê î ô û á é í ó ú à è ì ò ù ã ẽ ĩ õ ũ ä ë ï ö ü; do echo ' testing' $c; echo 'âêîôûáéíóúàèìòùãẽĩõũäëïöü' | ag $c; done
output (working):
testing â
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ê
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing î
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ô
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing û
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing á
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing é
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing í
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ó
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ú
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing à
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing è
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ì
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ò
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ù
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ã
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ẽ
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ĩ
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing õ
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ũ
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ä
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ë
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ï
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ö
âêîôûáéíóúàèìòùãẽĩõũäëïöü
testing ü
âêîôûáéíóúàèìòùãẽĩõũäëïöü
Environment information:
$ ag --version
ag version 2.2.0
Features:
+jit +lzma +zlib
The text was updated successfully, but these errors were encountered:
scodro
changed the title
ag not finding accent letters in case insensitive search (-i option)
ag not finding accent letters in case insensitive search explicitly with -i option
May 12, 2023
Trying to find char
ê
:Verifying other accent letters:
command with -i option:
output (not working):
command without -i option:
output (working):
Environment information:
Additional remark:
Could be related to issue #1062
The text was updated successfully, but these errors were encountered: