Answers for "vim strip trailing whitespace from the end of every line"

2

vim strip trailing whitespace from the end of every line

# Basic syntax:
:%s/\s\+$//g
# Note, to remove whitespace from the beginning of every line, use:
:%s/^ *//g
Posted by: Guest on March-14-2022

Code answers related to "vim strip trailing whitespace from the end of every line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language