Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-06 Thread Robert May
Sean Healy wrote: I tracked down the extra spaces problem. It turned out to be a space at the end of the line (after the EOL character(s)), not at the beginning, which is why it doesn't show up on the first line. Here's the cause of the problem: # How many characters are on a line, not

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-04 Thread mikemc
Thanks Sean I see what you mean. I have done as you said and all is good now. Thanks Mike Sean Healy wrote: I tracked down the extra spaces problem. It turned out to be a space at the end of the line (after the EOL character(s)), not at the beginning, which is why it doesn't show up

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-03 Thread mikemc
Sorry no joy. The getwrap indent reports 0 as well. Set the wrap indent to 5 to see what it did but still had the one indent second line and so on Will start trawing through the docs trying each command in turn Sean Healy wrote: On Wed, 02 May 2007 05:31:24 -0600, mikemc [EMAIL PROTECTED]

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-03 Thread Sean Healy
I tracked down the extra spaces problem. It turned out to be a space at the end of the line (after the EOL character(s)), not at the beginning, which is why it doesn't show up on the first line. Here's the cause of the problem: # How many characters are on a line, not including end of line

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-02 Thread mikemc
Thanks Sean I needed $Editor-SetEOLMode (2); or $Editor-SetEOLMode (1); depending upon final file destination I still get the indent see below one two three If you use editor.pl from the example files you get the same result, my code is based on this one anyway. I have tried

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-02 Thread Sean Healy
On Wed, 02 May 2007 05:31:24 -0600, mikemc [EMAIL PROTECTED] wrote: I still get the indent see below one two three If you use editor.pl from the example files you get the same result, my code is based on this one anyway. I have tried $Editor-SetIndent (0); But no joy Try

Re: [perl-win32-gui-users] EOL control in scintilla

2007-05-01 Thread Sean Healy
On Tue, 01 May 2007 04:39:09 -0600, mikemc [EMAIL PROTECTED] wrote: I am struggling to get to grips with the EOL command. As standard I seem to output a file which when i read back in i see what appears to be double line spacing. If i open the file in vi i see ^M chars at the end of each