Releases: kbrose/vsc-python-indent
Releases · kbrose/vsc-python-indent
v.1.21.0
- Updated version of esbuild (a development-only dependency that will have no effect on extension behavior)
(This version has no change in extension behavior.)
v1.20.0
- Removed reference to theme used in the demo gif of the README
(This version has no change in extension behavior.)
v1.19.0
- The main parsing logic has been migrated from typescript to rust. The parsing is exposed to the rest of the extension code via web assembly. This should be more responsive.
- Allow extension to run in untrusted workspaces. See VS Code's documentation for more information.
v1.18.1
(This is a pre-release.)
- The main parsing logic has been migrated from typescript to rust. The parsing is exposed to the rest of the extension code via web assembly. This should be more responsive.
- Allow extension to run in untrusted workspaces. See VS Code's documentation for more information.
v1.18.0
- When using remote development, prefer to run extension on the host (instead of locally) to reduce lag.
v1.17.0
Fix dedent logic when the dedent keyword is preceded by a multi-line indent keyword
v1.16.0
- Correctly delete selected text starting with space (fixes #96)
v1.15.0
- Update CI system to use Node v16
- Update minimum compatible VSC version to 1.65
- Update development dependencies, including migrating linting from tslint to eslint
- State the name of the theme used in the demo gif
v1.14.1
- Handles neovim mode in a similar way to vim mode.
- Fix innacuracy in README around comment-line continuation.