Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.65 KB

CHANGELOG.md

File metadata and controls

44 lines (28 loc) · 1.65 KB

Change Log

[v0.6.0]

  • Created a snippet to insert a regex test block into the regex test file.

[v0.5.0] - 17/12/2024

  • Refactored services to implement disposables, improving resource management and extension stability.
  • Added configurable settings to customize the color highlighting of regex matches.
  • Added a new CodeLens to update the regex extracted from the code using the 'Test Regex' CodeLens with the regex edited in the extension file, replacing the original regex in its original location.
  • Fixed regex code detector by adding support the flags s, v and d.

[v0.4.2] - 30/07/2024

  • Fixed the regex detector to detect two or more regex in the same line.
  • Reduced the extension package size by removing unnecessary files.

[v0.4.1] - 17/07/2024

  • Fixed Javascript regex detector to avoid detecting comments starting by /*.
  • Fixed the problem of losing the highlights of the regex test when switching tabs in the editor.

[v0.4.0] - 07/07/2024

  • Added the functionality to test regex present in the code editor in the regex match window.
  • Created configuration settings to enable/disable the code lens feature.

[v0.3.0] - 20/06/2024

  • Enables multiple regex testing in the regex match window.
  • Correction of regex testing with \n and wildcard character.

[v0.2.0] - 28/05/2024

  • Highlight capturing groups in the test string.
  • Use diagnostics to show errors in the regex match window.
  • Prevents the extension from acting on non-extension files.

[v0.1.0] - 15/05/2024

  • Create, test and debug regular expressions within a text file.
  • Highlight matches in the text.
  • Use Ctrl+Alt+X/Cmd+Alt+X to open the regex match window.