Skip to content

Instantly share code, notes, and snippets.

@v0d1ch
Last active September 29, 2023 12:48
Show Gist options
  • Save v0d1ch/abaf2a315e1a9fc1c476 to your computer and use it in GitHub Desktop.
Save v0d1ch/abaf2a315e1a9fc1c476 to your computer and use it in GitHub Desktop.
vim replace newline with comma
1,$s/\n/,/g #replace comma with new line
%norm A* #append * to every line
bufdo! %s/FIND/REPLACE/g # search all buffers
@crmpicco
Copy link

Helpful, thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment