kana / vim-vspec

Vim plugin: Testing framework for Vim script
http://www.vim.org/scripts/script.php?script_id=3012
222 stars 13 forks source link

Fix carriage return escape in bin/vspec #46

Closed glts closed 9 years ago

glts commented 9 years ago

The sed filter sed 's/\r$//' in bin/vspec has no effect on Mac OS X 10.9.

This is because the \r escape is not understood by the BSD sed on OS X. An easy fix is to pass a real carriage return character to sed.

kana commented 9 years ago

Thank you!