alexkrechik / VSCucumberAutoComplete

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

Option to not indent And? #274

Closed eddiegroves closed 5 years ago

eddiegroves commented 5 years ago

Hi there

How do I disable the 'And' from indenting.

So instead of:

    Scenario: A Test Iam Doing
        Given an individual person
            And a web browser
        When the person is viewing the page
        Then they see the page title "Hello World"

Have it like this:

    Scenario: A Test Iam Doing
        Given an individual person
        And a web browser
        When the person is viewing the page
        Then they see the page title "Hello World"

Thank you very much for your time!

eddiegroves commented 5 years ago

Turns out 'And' was being overridden in a workspace settings file that I had no knowledge of.