phiresky / ripgrep-all

rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.
Other
6.4k stars 148 forks source link

Support `.als` files #184

Closed Neved4 closed 9 months ago

Neved4 commented 9 months ago

Ableton Live .als files consist of XML gzip data, so ripgrep-all could search them directly.

 $ file --mime-type -b test.als
 application/gzip

Is your feature request related to a problem? Please describe.

Currently you need to zcat -f test.als | rga 'Ozone' to find a pattern in .als files.

Describe the solution you'd like

Ideally one could simply do rga 'Ozone' *.als.

Describe alternatives you've considered One can force the slow matchers rga --rga-accurate test.als but it's not as straightforward.