Skip to content

Let’s go Highlight an Identifier 🪁

Compare
Choose a tag to compare
@nicoespeon nicoespeon released this 03 Feb 22:07
· 615 commits to main since this release

Added

  • New feature to support refactorings: Highlight Identifiers. It can help you highlight all references to different variables.

Changed

  • Generated interfaces now have a consistent ; at the end of each line. This is a side-effect of upgrading Recast to solve #795

Fixed

  • Fixed a bug where the parser would not handle comments within an object that uses the satisfies operator. Kudos to @byronwall for the detailed report!
  • Inlining JSX in a JSX attribute doesn't remove the curly braces anymore. Thanks, @automatensalat for reporting.
  • Extracting a variable when the cursor is on a JSX attribute name used to break the code. Now it will resolve the closest extractable chunk (the JSX Element). Thanks again @automatensalat for reporting.