Skip to content

Commit

Permalink
Fix seealso not ignored, ignore category, parent
Browse files Browse the repository at this point in the history
  • Loading branch information
valentjn committed Jan 24, 2021
1 parent 42b5124 commit bc7f24c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
## 9.1.1 (upcoming)

- Fix false positives for words added by `Add to dictionary` for Slovak rule IDs `MUZSKY_ROD_NEZIV_A`, `ZENSKY_ROD_A`, and `STREDNY_ROD_A` (fixes [vscode-ltex#221](https://github.com/valentjn/vscode-ltex/issues/221))
- Fix BibT<sub>E</sub>X field `seealso` not ignored, ignore `category` and `parent` (see [vscode-ltex#211](https://github.com/valentjn/vscode-ltex/issues/211))

## 9.1.0 (January 24, 2021)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ private static Map<String, Boolean> createDefaultBibtexFields() {
Map<String, Boolean> bibtexFields = new HashMap<>();

bibtexFields.put("author", false);
bibtexFields.put("category", false);
bibtexFields.put("date", false);
bibtexFields.put("doi", false);
bibtexFields.put("edition", false);
Expand All @@ -33,10 +34,11 @@ private static Map<String, Boolean> createDefaultBibtexFields() {
bibtexFields.put("origlanguage", false);
bibtexFields.put("owner", false);
bibtexFields.put("pages", false);
bibtexFields.put("parent", false);
bibtexFields.put("publisher", false);
bibtexFields.put("pubstate", false);
bibtexFields.put("see", false);
bibtexFields.put("see-also", false);
bibtexFields.put("seealso", false);
bibtexFields.put("shorthand", false);
bibtexFields.put("timestamp", false);
bibtexFields.put("translator", false);
Expand Down

0 comments on commit bc7f24c

Please sign in to comment.