Let \declaretheorem accept multiple env names (#121)

pull/813/head
Patrick Förster 2024-04-28 09:25:04 +07:00 committed by GitHub
parent 01973c115c
commit cd82eb40d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Add missing citation commands: `\citeA`, `\citeR`, `\citeS`, `\citeyearR` ([#94](https://github.com/latex-lsp/tree-sitter-latex/issues/94))
- Let `\declaretheorem` accept multiple environment names ([texlab/#1075](https://github.com/latex-lsp/texlab/issues/1075))
## [0.4.0] - 2024-04-01

@ -1057,7 +1057,7 @@ module.exports = grammar({
),
),
optional(field('options', $.brack_group_key_value)),
field('name', $.curly_group_text),
field('name', $.curly_group_text_list),
optional(
choice(
seq(

@ -318,7 +318,7 @@ tree-sitter-latex (Issue #24)
(source_file
(theorem_definition
(curly_group_text
(curly_group_text_list
(text
(word)))
(curly_group