Releases: huacnlee/autocorrect
v2.14.0
What's Changed
- feat: Add
space-dollar
option to add space near the$
by @taoky in #259 - fix: support python double quote regexp by @st1020 in #258
New Contributors
- @typed-sigterm made their first contribution in #251
- @st1020 made their first contribution in #258
- @taoky made their first contribution in #259
Full Changelog: v2.13.3...v2.14.0
v2.13.3
What's Changed
🎉 Special thanks @quake for these performance changes, this version AutoCorrect get about 10% ~ 30% performance up.
- perf: Optimize
ReplaceRule
struct by @quake in #246 - perf: Optimize spellcheck rule by @quake in #247
- perf: Optimize format_word function performance by using direct Unicode mapping by @quake in #245
- perf: Use Cow to avoid creates string on format. by @quake in #248
- doc: Add use case for greptimedb by @yihong0618 in #244
- doc: Update benchmark result. by @huacnlee in #249
New Contributors
Full Changelog: v2.13.2...v2.13.3
v2.13.2
What's Changed
- lsp: Avoid LSP to appear
fixAll
, when there is no diagnostics. by @huacnlee in #222 - Improve Toggle code by use Arc to avoid clone rules. by @huacnlee in #228
- Fix
--stdin
append newline by @phanen in #232 - Fix JSON parser stack overflow bug for some complex cases. by @yihong0618 in #241
Others
- Fix Python release action by @TomBener in #227
- chore: bump
owo-colors
and some clippy fix by @attila-lin in #236
New Contributors
- @fjun99 made their first contribution in #238
- @phanen made their first contribution in #232
- @attila-lin made their first contribution in #236
- @yihong0618 made their first contribution in #241
Full Changelog: v2.13.0...v2.13.2
v2.13.0
What's Changed
Full Changelog: v2.12.0...v2.13.0
v2.12.0
What's Changed
- Add
--strict
argument for cli by @JustAnotherID in #219
New Contributors
- @JustAnotherID made their first contribution in #219
Full Changelog: v2.11.0...v2.12.0
v2.11.1
New Features
-
Add
context.codeblock
config to enable / disable in codeblock. (#211)In
.autocorrectrc
# Enable or disable in spatial context context: # Enable or disable to format codeblock in Markdown or AsciiDoc etc. codeblock: 1
Improvements
- Fix cli
--fix
result output to ensure a newline for last message. - Remove duplicate to_string (#209)
v2.10.0
What's Changed
LSP server is made for Zed extension: zed-autocorrect
It also can easy integration to other Editor that supported LSP.
Full Changelog: v2.9.4...v2.10.0
v2.9.4
What's Changed
Full Changelog: v2.9.3...v2.9.4
v2.9.3
What's Changed
Full Changelog: v2.9.1...v2.9.3
v2.9.1
What's Changed
-
Remove unused dependencies, and improve to avoid str clone (#185)
-
Add
--quiet
argument for cli. (#188)- Improved the cli print details, add color to total duration.
- Improved progress dot print, avoid immediate print for improved performance.
-
Add shell (
.sh
) script support. (#189) -
Fix
space-dash
rule can't disable bug. (#190)In the before versions,
-
is always will added spaces by other rules.
This version changed thespace-dash
rule default to enable, this will keep the compatibility with before behavior.
Now, we can usespace-dash: 0
to disable thespace-dash
rule.