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

Feature request: Transpose tables #379

Open axos88-da opened 3 years ago

axos88-da commented 3 years ago

It would be great if it was possible to transpose a gherkin table at the push of a button

okrechyk-gb commented 3 years ago

Could you please add more details for this?

axos88-da commented 3 years ago

Turning

| Header 1  | Header 2  | Header 3  |
| Value 1.1 | Value 1.2 | Value 1.3 |
| Value 2.1 | Value 2.2 | Value 3.3 |
| Value 3.1 | Value 2.2 | Value 3.3 |

Into:

| Header 1 | Value 1.1 | Value 2.1 | Value 3.1 |
| Header 2 | Value 1.2 | Value 2.2 | Value 3.2 |
| Header 3 | Value 1.3 | Value 2.3 | Value 3.3 |