Skip to content

Releases: kbrose/vsc-python-indent

v1.14.0

14 Apr 14:46
Compare
Choose a tag to compare

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

01 Apr 02:34
Compare
Choose a tag to compare
  • Fix link in README

v1.13.0

01 Apr 02:28
Compare
Choose a tag to compare
  • This extension has been installed half a million times. That's pretty cool.
  • Added dontation link.
  • Updated development-only dependency y18n.
  • Refactored code to make it more testable.

v1.12.0

27 Oct 04:21
Compare
Choose a tag to compare
  • 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 case def f(x,| y) (where | is the cursor) but not in the case |print(x) or print(x)| . See the issue and the PR for more information.

v1.11.0

26 Aug 04:37
Compare
Choose a tag to compare

Add option to control whether hanging indents put the bracket on its own line or not.

v1.10.1

10 May 00:30
Compare
Choose a tag to compare
  • Update README to showcase new setting trimLinesWithOnlyWhitespace.

v1.10.0

10 May 00:22
Compare
Choose a tag to compare
  • Lines that contain only whitespace can be trimmed after pressing Enter using the new trimLinesWithOnlyWhitespace setting. This defaults to false, 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.

v1.9.0

10 May 00:22
Compare
Choose a tag to compare

The access token I use to publish this extension expired, which meant this version didn't get pushed. However, it still incremented the version number. ¯\_(ツ)_/¯

v1.8.1

19 Nov 14:28
Compare
Choose a tag to compare

Also handle while...else.

v1.8.0

19 Nov 04:15
Compare
Choose a tag to compare

Update dedent logic to handle for...else and try...else constructs.