Skip to content

Commit

Permalink
syntax: Highlight Goal in any context
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysxia authored and rtetley committed Nov 22, 2024
1 parent 98c1c0d commit fd167d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/syntax/coq.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"name": "keyword.control.import.coq"
},
{
"match": "\\b(Theorem|Lemma|Remark|Fact|Corollary|Property|Proposition|Goal)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)",
"match": "\\b(Theorem|Lemma|Remark|Fact|Corollary|Property|Proposition)\\s+((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)",
"comment": "Theorem declarations",
"captures": {
"1": {
Expand All @@ -26,6 +26,10 @@
}
}
},
{
"match": "\\bGoal\\b",
"name": "keyword.source.coq"
},
{
"match": "\\b(Parameters?|Axioms?|Conjectures?|Variables?|Hypothesis|Hypotheses)(\\s+Inline)?\\b\\s*\\(?\\s*((\\p{L}|[_\\u00A0])(\\p{L}|[0-9_\\u00A0'])*)",
"comment": "Assumptions",
Expand Down

0 comments on commit fd167d6

Please sign in to comment.