| 80 | } |
| 81 | |
| 82 | auto ScintillaEditor::GetEOL() const -> unsigned |
| 83 | { |
| 84 | LRESULT eolMode = ::SendMessage(m_hScintilla, SCI_GETEOLMODE, 0, 0); |
| 85 | return static_cast<unsigned>(eolMode); |
| 86 | } |
| 87 | |
| 88 | auto ScintillaEditor::GetIndent() const -> std::tuple<char, unsigned> |
| 89 | { |