2
votes
5answers
124 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 …
1
vote
10answers
400 views
Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5)
Our desktop-only product at work has been using JDK 1.4.2 until now (also 1.4.2 JRE shipped with product). I am trying to convince the management to let us upgrade to a newer version in order to get …
1
vote
6answers
248 views
Can git-svn be made to handle CRLF like native subversion clients?
I have a subversion repository hosted on Linux but only ever accessed via windows clients as it's for the source of a large Windows application.
It would be awesome if I could work on this repository …
1
vote
2answers
380 views
Setting encoding, newline, linebreaks, end-of-line (EOL) in PHP
For example, when I create a new file:
$message = "Hello!";
$fh = fopen(index.html, 'w');
fwrite($fh, $message);
fclose($fh);
How can I set it's encoding(utf-8 or shift-jis or euc-jp) and …
0
votes
2answers
800 views
c++ ifstream, detect if letter or EOLine?
I have this function to read in all ints from the file.
The problem is when i read letters i trigger a new line and i always seek by 1 and not to the end of line. How can i write this function better?
…
1
vote
4answers
430 views
determining the line terminator in emacs
I'm writing a config file and I need to define if the process expects a windows format file or a unix format file. I've got a copy of the expected file - is there a way I can check if it uses \n or …
1
vote
2answers
317 views
size difference between email and ftp text message - EOL characters?
I'm attempting to deliver the same message whether its over FTP or email, but the saved file keeps coming out as different sizes. The textual content of the message is the same, but the nonprintable …
