Tagged Questions
4
votes
7answers
2k views
in Vim how do I hide the eol doc chars ^M
in gvim on windows if I have text with CRLF eol then the text will display ^M at the end of each line.
How do I 'hide' that special char from display?
the :set nolist command """ does not dismiss ...
3
votes
1answer
111 views
Convert the end of line pattern in a Mercurial repository
I have a repository that was populated with files with Windows end of line markers, but I intended to use the Unix EOL pattern.
One option is to manually (dos2unix) change all the files, then commit ...
1
vote
2answers
65 views
How to control line endings output by lua DOS<==>Unix
I am using luadoc and running it on Unix and windows, unfortunately the output is different on each system because of the DOS/Unix line endings, this really confuses my source control as it thinks ...
1
vote
4answers
875 views
Python file.write creating extra carriage return
I'm writing a series of SQL statements to a file using python. The template string looks like:
store_insert = '\tinsert stores (storenum, ...) values (\'%s\', ...)'
I'm writing to the file like so:
...
1
vote
1answer
413 views
Problems configuring eol extension in Mercurial
I'm trying to clone a unix-hosted Mercurial repository to a Windows computer. I'm hoping to use the eol extension so that my text files with LF endings on the server have CRLF when cloned to a Windows ...