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
The VSCodeVim team prioritizes issues based on reaction count.
With a list of words, one per line:
div span input script
Press : to enter command mode, type %s/(.*)/'$1',/g, hit enter.
:
%s/(.*)/'$1',/g
The list of words is transformed to:
'div', 'span', 'input', 'script'
The list is transformed to:
'div','', 'span','', 'input','', 'script''',
The text was updated successfully, but these errors were encountered:
related
#991
Sorry, something went wrong.
With the new PR #1725, this issue is fixed as long as you use %s/.*/'$1',/g
%s/.*/'$1',/g
This is added with the new "enableNeovim" option (on master).
Successfully merging a pull request may close this issue.
The VSCodeVim team prioritizes issues based on reaction count.
What did you do?
With a list of words, one per line:
Press
:
to enter command mode, type%s/(.*)/'$1',/g
, hit enter.What did you expect to happen?
The list of words is transformed to:
What happened instead?
The list is transformed to:
Technical details:
The text was updated successfully, but these errors were encountered: