Releases: kbrose/vsc-python-indent
Releases · kbrose/vsc-python-indent
v1.14.0
I fat fingered the update, so the changelog lists these changes under the v1.13.2 section. That will be fixed going forward, but this snapshot will be wrong forever.
- Update CI system to use Node v10. This fixed an error that started cropping up with v8.
- Add GitHub Sponsors information
v1.13.1
v1.13.0
v1.12.0
- Updated required vscode version to 1.50 (September 2020 release)
- Whitespace to the right of the cursor will now be deleted when pressing
Enter
. This only happens when there are non-whitespace characters to the left and to the right of the cursor, e.g. as in the casedef f(x,| y)
(where|
is the cursor) but not in the case|print(x)
orprint(x)|
. See the issue and the PR for more information.
v1.11.0
v1.10.1
v1.10.0
- Lines that contain only whitespace can be trimmed after pressing
Enter
using the newtrimLinesWithOnlyWhitespace
setting. This defaults tofalse
, i.e. lines are not trimmed. The new behavior more closely matches the native VSCode behavior. See issue 60 for a more complete discussion of the native behavior. - Update development dependencies to handle various deprecations and migrations. This has no effect on the dependencies needed to run the extension, just develop it.