Skip to content
Snippets Groups Projects
Commit c6850606 authored by Owen Arnold's avatar Owen Arnold
Browse files

Merge pull request #110 from mantidproject/bugfix/10654_osx_script_editor_eol

Use unix-style line endings in script editor on OSX.
parents f0341602 acb7e2c6
No related merge requests found
......@@ -146,6 +146,14 @@ ScriptEditor::ScriptEditor(QWidget *parent, QsciLexer *codelexer, const QString
m_currentExecLine(0), m_completer(NULL),m_previousKey(0),
m_findDialog(new FindReplaceDialog(this)), m_settingsGroup(settingsGroup)
{
// Older versions of QScintilla still use just CR as the line ending, which is pre-OSX.
// New versions just use unix-style for everything but Windows.
#if defined(Q_OS_WIN)
setEolMode(EolWindows);
#else
setEolMode(EolUnix);
#endif
//Syntax highlighting and code completion
setLexer(codelexer);
readSettings();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment