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

Improve autocomplete Description #450

Open chinakoma2 opened 2 years ago

chinakoma2 commented 2 years ago

I have a properties file which contains a list of named properties like FTPS props like host/port/login/password

Given('Get configiration {config_name}');
Then('I place file {file_name} in the remote folder') ; //"configuration file" you have to add host , port ,login and password in properties file for this step 

it looks like this : https://im.ge/i/FWc5MS

As we can see in the second step, I have to write the description of the step in the same line. My suggestion is to have a more structured way to add a better description style for the step

Example : like java methods documentaion

/**
* I place file {file_name} in the remote folder
* configuration file
* @host  FTPS server Hostname 
* @port  FTPS server Port
* @login FTPS server login
* @password  FTPS server Password
*/
Then('I place file {file_name} in the remote folder') ;

what i suggest is something look like this : https://im.ge/i/FWcmJF