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
Considering the following text:
abc xyz
The following Edit command:
Edit
Edit ,x/[a-z]+/ s/.*/T&/g
Should result in
Tabc Txyz
But it seems like x is capturing single chars only, instead the full 3 char group, so the command results in :
TaTbTc TxTyTz
I tried to find the problem to fix it myself but could not find where the bug is. It seems to work fine in go sam and plan9port acme.
The text was updated successfully, but these errors were encountered:
acme: fix regex engine where it was not matching everything github.com/…
c70c0db
…9fans/go#108
I think I got it: https://github.com/pedramos/9fans/commit/c70c0dbca34fe7f2a2ce603b2387cff6a640961b.patch
Sorry, something went wrong.
No branches or pull requests
Considering the following text:
The following
Edit
command:Should result in
But it seems like x is capturing single chars only, instead the full 3 char group, so the command results in :
I tried to find the problem to fix it myself but could not find where the bug is. It seems to work fine in go sam and plan9port acme.
The text was updated successfully, but these errors were encountered: