You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NotepadPlusWrapper and all ScintillaWrapper are now held for python in
boost:shared_ptr<>. boost::python has special handling for boost::shared_ptr
(not yet for std::shared_ptr<>)
.def("write", &ScintillaWrapper::AddText, "Add text to the document at current position (alias for addText).")
30
30
.def("callback", &ScintillaWrapper::addCallback, "Registers a callback to a Python function when a Scintilla event occurs. e.g. editor.callback(my_function, [ScintillaNotification.CHARADDED])")
31
31
.def("__getitem__", &ScintillaWrapper::GetLine, "Gets a line from the given (zero based) index")
0 commit comments