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: README.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ c) expandtabs() and packtabs() with a second argument for tabsize (not for pye,
121
121
- Lazy screen update: defer screen update, until all chars from the keyboard are processed. Not provided for WiPY, even if needed there most. WiPy has no way to tell if more chars are waiting in the input or at least a read with timeout.
122
122
123
123
**1.12** Bracket Match and Minor changes
124
-
- Ctrl-K causes the cursor set to the matching bracket, if any. Pretty raw, not elegant.
124
+
- Ctrl-K causes the cursor set to the matching bracket, if any. Pretty raw, not elegant.
125
125
Brackets in comments and strings are counting as well.
126
126
- On Copy the mark will be cleared, since it is assumed that the just copied lines will not be overwritten.
127
127
- High level try/except catching internal errors (mostly coding errors)
@@ -133,6 +133,13 @@ Brackets in comments and strings are counting as well.
133
133
- Squeezing a few lines out of the source code
134
134
135
135
**1.12c** Speed up pasting again
136
-
- Speeded up pasting again. Slowing down pasting was caused by a in-function import statement.
137
-
- Squeezing another few lines out of the source code by combining two functions, which were anyhow called one after the other, resulting in a enourmous long function handling the keyboard input.
136
+
- Speed up pasting again. Slowing down pasting was caused by a in-function import statement in V1.11.
137
+
- Squeezing another few lines out of the source code by combining two functions, which were
138
+
anyhow called one after the other, resulting in a enormous long function handling the keyboard input.
139
+
140
+
**1.12d** Split undo of Indent/Un-Indent
141
+
- Split undo for Indent and Un-Indent
142
+
- Fixed a minor inconvenience when going left at the line start (sqeezed too much in v1.12b)
143
+
- Move a few lines around, such that keys which are more probable for fast repeats are checked for earlier.
0 commit comments