-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Improve Gherkin support #3643
Open
Hirse
wants to merge
7
commits into
highlightjs:main
Choose a base branch
from
Hirse:gherkin
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Improve Gherkin support #3643
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ab6f50a
Improve Gherkin support
Hirse 67973e8
Properly detect features at beginning of line
Hirse 2e9d397
Merge branch 'main' into gherkin
Hirse 5818d3f
Merge branch 'main' into gherkin
Hirse 75fab99
Remove duplication
Hirse 4443b80
Re-add Business Need and Ability
Hirse ebd9c9f
Remove more duplication
Hirse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<span class="hljs-keyword">Given</span> a blog post named "Random" with Markdown body | ||
<span class="hljs-string">""" | ||
Some Title, Eh? | ||
=============== | ||
Here is the first paragraph of my blog post. Lorem ipsum dolor sit amet, | ||
consectetur adipiscing elit. | ||
"""</span> | ||
|
||
<span class="hljs-keyword">Given</span> a blog post named "Random" with Markdown body | ||
<span class="hljs-string">``` | ||
Some Title, Eh? | ||
=============== | ||
Here is the first paragraph of my blog post. Lorem ipsum dolor sit amet, | ||
consectetur adipiscing elit. | ||
```</span> | ||
|
||
<span class="hljs-keyword">Given</span> the following users exist: | ||
<span class="hljs-string">| name | email | twitter |</span> | ||
<span class="hljs-string">| Aslak | [email protected] | @aslak_hellesoy |</span> | ||
<span class="hljs-string">| Julien | [email protected] | @jbpros |</span> | ||
<span class="hljs-string">| Matt | [email protected] | @mattwynne |</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Given a blog post named "Random" with Markdown body | ||
""" | ||
Some Title, Eh? | ||
=============== | ||
Here is the first paragraph of my blog post. Lorem ipsum dolor sit amet, | ||
consectetur adipiscing elit. | ||
""" | ||
|
||
Given a blog post named "Random" with Markdown body | ||
``` | ||
Some Title, Eh? | ||
=============== | ||
Here is the first paragraph of my blog post. Lorem ipsum dolor sit amet, | ||
consectetur adipiscing elit. | ||
``` | ||
|
||
Given the following users exist: | ||
| name | email | twitter | | ||
| Aslak | [email protected] | @aslak_hellesoy | | ||
| Julien | [email protected] | @jbpros | | ||
| Matt | [email protected] | @mattwynne | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<span class="hljs-keyword">Feature</span><span class="hljs-punctuation">:</span> some feature | ||
|
||
<span class="hljs-keyword">Rule</span><span class="hljs-punctuation">:</span> some rule | ||
|
||
<span class="hljs-keyword">Background</span><span class="hljs-punctuation">:</span> | ||
<span class="hljs-keyword">Given</span> some background | ||
|
||
<span class="hljs-keyword">Example</span><span class="hljs-punctuation">:</span> an example | ||
<span class="hljs-keyword">Given</span> the conditions | ||
<span class="hljs-keyword">And</span> some other conditions | ||
<span class="hljs-keyword">*</span> same as and | ||
<span class="hljs-keyword">But</span> not these conditions | ||
<span class="hljs-keyword">When</span> something happens | ||
<span class="hljs-keyword">And</span> something else | ||
<span class="hljs-keyword">Then</span> I do this | ||
|
||
<span class="hljs-keyword">Scenario</span><span class="hljs-punctuation">:</span> same as example | ||
<span class="hljs-keyword">Given</span> the conditions | ||
<span class="hljs-keyword">And</span> some other conditions | ||
<span class="hljs-keyword">*</span> same as and | ||
<span class="hljs-keyword">But</span> not these conditions | ||
<span class="hljs-keyword">When</span> something happens | ||
<span class="hljs-keyword">And</span> something else | ||
<span class="hljs-keyword">Then</span> I do this | ||
|
||
<span class="hljs-keyword">Scenario Outline</span><span class="hljs-punctuation">:</span> some outline | ||
<span class="hljs-keyword">Examples</span><span class="hljs-punctuation">:</span> part of outline | ||
<span class="hljs-keyword">When</span> a | ||
<span class="hljs-keyword">Then</span> b | ||
|
||
<span class="hljs-keyword">Scenario Template</span><span class="hljs-punctuation">:</span> same as scenario outline | ||
<span class="hljs-keyword">Scenarios</span><span class="hljs-punctuation">:</span> same as examples | ||
<span class="hljs-keyword">When</span> a | ||
<span class="hljs-keyword">Then</span> b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Feature: some feature | ||
|
||
Rule: some rule | ||
|
||
Background: | ||
Given some background | ||
|
||
Example: an example | ||
Given the conditions | ||
And some other conditions | ||
* same as and | ||
But not these conditions | ||
When something happens | ||
And something else | ||
Then I do this | ||
|
||
Scenario: same as example | ||
Given the conditions | ||
And some other conditions | ||
* same as and | ||
But not these conditions | ||
When something happens | ||
And something else | ||
Then I do this | ||
|
||
Scenario Outline: some outline | ||
Examples: part of outline | ||
When a | ||
Then b | ||
|
||
Scenario Template: same as scenario outline | ||
Scenarios: same as examples | ||
When a | ||
Then b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<span class="hljs-keyword">Scenario Outline</span><span class="hljs-punctuation">:</span> Add two numbers | ||
<span class="hljs-keyword">Given</span> I have entered <span class="hljs-variable"><input_1></span> into the calculator | ||
<span class="hljs-keyword">And</span> I have entered <span class="hljs-variable"><input_2></span> into the calculator | ||
<span class="hljs-keyword">And</span> first < second and second > first | ||
<span class="hljs-keyword">Then</span> second <- first |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Scenario Outline: Add two numbers | ||
Given I have entered <input_1> into the calculator | ||
And I have entered <input_2> into the calculator | ||
And first < second and second > first | ||
Then second <- first |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This repetition is frustrating. Could a single top-level rule to eat tabs at the start of lines accomplish this same thing (probably would leave to false positives)? If not why not add it to each multi-match rule as an optional first component:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, eating whitespace of the beginning of the line with an empty mode seems to work. Is that what you had in mind? 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The multi-match method I show above is what I had in mind, yes. That's the best way I know to handle this kind of thing (without putting the whitespace inside the highlight zone).