alexkrechik / VSCucumberAutoComplete

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

#378 fix relative indentation #386

Closed lacell75 closed 2 years ago

lacell75 commented 3 years ago

Fix #378

Before this fix :

        Given the cow weighs <weight> kg
                And the rabbit weighs <protein> kg
            When we calculate the feeding requirements
            Then the energy should be <energy> MJ
    And the protein should be <protein> kg

Now, it's working :

        Given the cow weighs <weight> kg
        And the rabbit weighs <protein> kg
            When we calculate the feeding requirements
            Then the energy should be <energy> MJ
            And the protein should be <protein> kg
pf-lkobbe commented 2 years ago

Please have a look at PR #437 which addresses this issue in a way that both directions are supported and no breaking changes are introduced.

pf-lkobbe commented 2 years ago

Please have a look at PR #437 which addresses this issue in a way that both directions are supported and no breaking changes are introduced.

alexkrechik commented 2 years ago

Fixed with an additional format option in scope of PR https://github.com/alexkrechik/VSCucumberAutoComplete/pull/437.