8000 Releases · huacnlee/autocorrect · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: huacnlee/autocorrect

v2.14.0

26 Apr 11:59
Compare
Choose a tag to compare

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

Full Changelog: v2.13.3...v2.14.0

v2.13.3

24 Mar 02:38
Compare
Choose a tag to compare

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

19 Mar 10:16
Compare
Choose a tag to compare

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

New Contributors

Full Changelog: v2.13.0...v2.13.2

v2.13.0

15 Oct 11:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.12.0...v2.13.0

v2.12.0

13 Oct 03:18
89642c9
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.11.0...v2.12.0

v2.11.1

20 Jun 13:55
Compare
Choose a tag to compare

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

22 May 14:28
Compare
Choose a tag to compare

What's Changed

  • Add autocorrect server command to start LSP server. by @huacnlee in #199

LSP server is made for Zed extension: zed-autocorrect

image

It also can easy integration to other Editor that supported LSP.

Full Changelog: v2.9.4...v2.10.0

v2.9.4

22 May 07:51
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.9.3...v2.9.4

v2.9.3

20 May 03:07
Compare
Choose a tag to compare
v2.9.3 Pre-release
Pre-release

What's Changed

  • Hide "AutoCorrect spend time" info when --quiet is set. by @huacnlee in #194

Full Changelog: v2.9.1...v2.9.3

v2.9.1

07 May 11:14
Compare
Choose a tag to compare

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 the space-dash rule default to enable, this will keep the compatibility with before behavior.
    Now, we can use space-dash: 0 to disable the space-dash rule.

0