Matthew Entrekin
Results
1
comments of
Matthew Entrekin
```sh rg --color=always --line-number --no-heading --smart-case "${*:-}" ... ``` I had an issue with the parameters being passed to ripgrep as `"${*:-}"`. Using `"${@:-}"` or simply `"$@"` allowed me to...