-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Which cucumberautocomplete settings should I use to replace a {string} with "" double-quotes when autocompleting a step? Not ("|')[^\1]*\1 or ("|')\1 #470
Comments
Having the same problem. I thought something was broken with my setup. |
I've implemented an option for that |
That great, thank you! Could share the details? |
@vitalets @AlexanderGranhof @colinwirt @pcondetmg @Finaldrace @RealByron has worked on a fix for this - would any of you kindly like to review the PR: #474 |
Appreciate @RealByron work! lgtm |
see PR #476 that fix that the right way |
Encountered this problem today with VSCode |
Hi @alexkrechik |
I am building a
Cypress
Framework using the@badeball/cypress-cucumber-preprocessor
node package and theCucumber (Gherkin) Full Support
vs code extension.When autocompleting a step that contains {string} I would like to replace {string} with "" instead of ("|')[^\1]*\1 or ("|')\1
My
.cypress-cucumber-preprocessorrc.json
file is as follows:My
settings.json
file is as follows:For example, I have a step definition as follows:
With the above settings and
smartSnippets
set totrue
I get the following autocompleted step:With the above settings but changing
smartSnippets
tofalse
I get the following autocompleted step:What I would like to get is this autocompleted step:
The text was updated successfully, but these errors were encountered: