alexkrechik / VSCucumberAutoComplete

Cucumber (Gherkin) Full Support Extension for VSCode
https://marketplace.visualstudio.com/items?itemName=alexkrechik.cucumberautocomplete
MIT License
331 stars 79 forks source link

fix: add correct regex for {word} per Cucumber standard #469

Closed lfk-cbrain closed 10 months ago

lfk-cbrain commented 1 year ago

Fixed so steps.handler.ts follows Cucumber's regex for the {word} expression.

Currently the extension uses '[A-Za-z]+' while Cucumber uses '[^\s]+' per their documentation and their code