tpope / vim-fireplace

fireplace.vim: Clojure REPL support
https://www.vim.org/scripts/script.php?script_id=4978
1.75k stars 139 forks source link

Use CRLF on windows when parsing test result #254

Closed smy20011 closed 8 years ago

smy20011 commented 8 years ago

Fireplace use LF as eol when parsing the test result from nRepl. On windows, nRepl will use CRLF as new line instead of LF.

tpope commented 8 years ago

Let's just split on both with "\r\\=\n" and avoid the slew of edge cases around Cygwin etc.

smy20011 commented 8 years ago

Updated

tpope commented 8 years ago

Please squash

smy20011 commented 8 years ago

Squashed

On Mon, Dec 28, 2015 at 9:49 PM, Tim Pope notifications@github.com wrote:

Please squash

— Reply to this email directly or view it on GitHub https://github.com/tpope/vim-fireplace/pull/254#issuecomment-167712201.

Siyuan Ma Master student of Computer Science in Rice University

tpope commented 8 years ago

Thanks