|
|
|
|
|
by burntsushi
3164 days ago
|
|
> don't bother unless you find ag slow Or if you want more correct gitignore matching. > (I remember the --python option, but have no idea how to filter with rg) rg -tpy 'def __init__'
or, to exclude Python files rg -Tpy 'def __init__'
You can see the list of types available with `rg --type-list`. |
|