fish/functions/rstrip.fish @ a5c9b4b0936a

Neovim
author Steve Losh <steve@stevelosh.com>
date Wed, 09 Dec 2015 12:14:45 +0000
parents c68485e8d84b
children (none)
function rstrip -d "Strip whitespace from the right of each line"
    sed -e 's/[[:space:]]*$//'
end