| 121 | } |
| 122 | |
| 123 | EditorCodepage NppInterface::get_encoding() const { |
| 124 | auto CodepageId = static_cast<int>(send_msg_to_scintilla(SCI_GETCODEPAGE, 0, 0)); |
| 125 | if (CodepageId == SC_CP_UTF8) |
| 126 | return EditorCodepage::utf8; |
| 127 | |
| 128 | return EditorCodepage::ansi; |
| 129 | } |
| 130 | |
| 131 | void NppInterface::activate_document(int index) { send_msg_to_npp(NPPM_ACTIVATEDOC, to_index(m_target_view), index); } |
| 132 |
no outgoing calls
no test coverage detected