-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
Substitute pattern with newline #1861
Comments
I think this is caused by microsoft/vscode#29238 |
@samsong8610 Is this with or without neovim integration? |
Actually the command seems to work fine WITH neovim integration, it does not work correctly (as reported here) WITHOUT neovim integration Neovim integration is just syncing the editor? How is it getting the output of the command and setting it in the current editor? I assume it is not using the same replace text call.. |
@Chillee It is without neovim integration. |
@xconverge Neovim integration just allows us to run the command within neovim. So if it works in Neovim it should work in VSCode (with a couple exceptions). @samsong8610 I'd suggest adding the neovim integration if you want this feature. Although we'll keep this open and may fix it, things that work with neovim integration will tend to have lower priority. |
The VSCodeVim team prioritizes issues based on reaction count.
Environment:
What happened:
I have comma separated line like
a,b,c
. I want to split each char into a line using:But the actual output is
a\rb\rc
It works in vim 8.0
What did you expect to happen:
Each part separated by comma is in a line. Expected output is:
How to reproduce it:
The text was updated successfully, but these errors were encountered: