Gary Johnson wrote: > On 2013-05-02, Waters, Bill wrote: > >> I think that the root of the problem is that in the shell from >> GVim the file is getting treated as binary instead of text. Not >> sure how to fix that. >> ---- No... I'll be it's in the files he is indenting. His vim -- especially if he is using the gvim/vim in windows (vs. the one in the cygwin package) will likely be defaulting to CRLF.
Bill -- two things to do. 1) make sure your vimrc has a "set fileformat=unix" somewhere in it so your vim won't default to creating CR's, Second.. what indent are you using? Is it one in cygwin or another? The one in cygwin *shouldn't* be inserting "CR"... (what format do you want them in, anyway?) If all else fails -- write a bash script: ---- #!/bin/bash indent "$@"|tr -d "\r" ---- and call it instead of indent directly. (you probably already have this solved, just noticed the post, so sorry if this is superfluous). -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
