We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to search for ref.read(metrics and replace it with ref.watch(metrics
ref.read(metrics
ref.watch(metrics
Since we're using rg for search, I have to do ref.read\(metrics to get the files.
ref.read\(metrics
But since we're using sed for replacing which treats escaped parens as significant, we get these errors:
sed
sed "-i" "-E" "28,28s/ref.read\(metrics/ref.watch(metrics/gi" "[file name]" sed: 1: "28,28s/ref.read\(metric ...": RE error: parentheses not balanced
The text was updated successfully, but these errors were encountered:
Can you switch to using the "oxi"? It requires a build step with Rust.
Sorry, something went wrong.
Is there a non-oxi workaround? If not that's fine, feel free to close
No branches or pull requests
I want to search for
ref.read(metrics
and replace it withref.watch(metrics
Since we're using rg for search, I have to do
ref.read\(metrics
to get the files.But since we're using
sed
for replacing which treats escaped parens as significant, we get these errors:The text was updated successfully, but these errors were encountered: