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
- GetCharacterPointer improved to return a Python str
- Scintilla.iface updated to the about-to-be-released 2.25
- CreateWrapper run and new output created
- New SCN_HOTSPOTRELEASECLICK Scintilla event handled
- notepad.getPluginVersion() function added to get string
version of PythonScript plugin
Copy file name to clipboardExpand all lines: PythonScript/src/NotepadPython.cpp
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,8 @@ void export_notepad()
85
85
.def("getCommandLine", &NotepadPlusWrapper::getCommandLine, "Gets the command line used to start Notepad++")
86
86
.def("allocateSupported", &NotepadPlusWrapper::allocateSupported, "Returns TRUE if the Command ID allocation API is supported in this version of Notepad++")
87
87
.def("allocateCmdID", &NotepadPlusWrapper::allocateCmdID, "allocateCmdID(numberRequested) -> int\nAllocates a Command ID for use in WM_COMMAND. Mainly used internally by plugins.")
88
-
.def("allocateMarker", &NotepadPlusWrapper::allocateMarker, "allocateMarker(numberRequested) -> int\nAllocates a marker number for Scintilla. Use this to stop marker number collisions with other plugins / scripts.");
88
+
.def("allocateMarker", &NotepadPlusWrapper::allocateMarker, "allocateMarker(numberRequested) -> int\nAllocates a marker number for Scintilla. Use this to stop marker number collisions with other plugins / scripts.")
89
+
.def("getPluginVersion", &NotepadPlusWrapper::getPluginVersion, "getPluginVersion() -> str\nGets the version number of the PythonScript plugin, in the format '0.9.0.1'");
0 commit comments