Is there a Visual Studio Code extension that will write cucumber step definitions?
For example, with IntelliJ if I type
When I login as "fred" with password "barney"
into a feature, then press alt-enter on the undefined step, IntelliJ will auto-generate
When(/^I login as "([^"]*)" with password "([^"]*)"$/) do |arg1, arg2|
pending
end
in one of my step definition files.
Can Visual Studio Code do this also? (I do have Cucumber Full Support installed; but, it seems to only autocomplete existing steps.)