// GtkScintillaEolMode
define( "SCINTILLA_EOL_CRLF" , 0 );
define( "SCINTILLA_EOL_CR" , 1 );
define( "SCINTILLA_EOL_LF" , 2 );
# CRLF = Carriage return + line feed
# CR = Carriage return
# LF = Line feed
# Win32 uses CR+LF, Linux uses LF.
$scintilla->set_eol_mode(SCINTILLA_EOL_CRLF);
|