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
Copy file name to clipboardExpand all lines: docs/source/enums.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ SCINTILLAMESSAGE
156
156
.. _SCINTILLAMESSAGE:
157
157
.. class:: SCINTILLAMESSAGE
158
158
159
-
This enum contains all the messages defined in Scintilla - e.g. SCI_APPENDTEXT. For a complete list, see the `Scintilla <http://www.scintilla.org/ScintillaDoc.html>`_ documentation.
159
+
This enum contains all the messages defined in Scintilla - e.g. SCI_APPENDTEXT. For a complete list, see the `Scintilla <https://www.scintilla.org/ScintillaDoc.html>`_ documentation.
160
160
161
161
162
162
NOTIFICATION
@@ -2674,4 +2674,4 @@ WRAPVISUALLOCATION
2674
2674
.. End of autogeneration /* --Autogenerated ----- */
Copy file name to clipboardExpand all lines: docs/source/intro.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Working with Unicode Text
66
66
=========================
67
67
68
68
Python 2.x works with multi-byte strings, as does Scintilla. That means in most cases, you don't need to do anything special to deal with unicode data,
69
-
as both sides are talking the same language. However, there are a few things to observe, and occassionaly you'll need to do something special to achieve
69
+
as both sides are talking the same language. However, there are a few things to observe, and occasionally you'll need to do something special to achieve
70
70
what you want to do. One important point is to make sure your script is saved in the same encoding as your target file(s) - this helps unicode strings
71
71
be interpreted the same way.
72
72
@@ -202,7 +202,7 @@ The Callback smallprint
202
202
-----------------------
203
203
204
204
Due to the nature of Scintilla events, they are by default processed internally slightly differently to Notepad++ events.
205
-
Notepad++ events are always processed *sychronously*, i.e. your event handler finishes before Python Script lets
205
+
Notepad++ events are always processed *synchronously*, i.e. your event handler finishes before Python Script lets
206
206
Notepad++ continue. Scintilla events are placed in a queue, and your event handlers are called as the queue is *asynchronously* processed
207
207
- i.e. the event completes before your event handler is complete (or potentially before your event handler is even called).
208
208
@@ -219,6 +219,6 @@ need to be aware of it if you're doing something time-sensitive.
Copy file name to clipboardExpand all lines: docs/source/pythonprimer.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,14 +131,14 @@ Further Information
131
131
132
132
This guide may be extended in the future, if people request it, and either I get time, or somebody puts some time into it. There are many good sources of information on the Internet, I've included a couple here.
0 commit comments