Skip to content

Commit

Permalink
Add some commands from KOMA-Script and BibLaTeX
Browse files Browse the repository at this point in the history
  • Loading branch information
me-johnomar authored and valentjn committed Dec 18, 2021
1 parent a11a145 commit 73c9584
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
<action type="add" issue="#130">
Add support for diacritical commands when enclosed in braces (LaTeX)
</action>
<action type="add" issue="vscode-ltex#490">
Add support for `\newcaptionname` etc. from KOMA-Script and `\DefineBibliographyStrings` from BibLaTeX (LaTeX)
</action>
</release>
<release version="15.2.0" date="2021-11-28">
<action type="add" issue="#120">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,13 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\defbibheading{}{}"),
LatexCommandSignature("\\defbibheading{}[]{}"),
LatexCommandSignature("\\defbibnote{}{}"),
LatexCommandSignature("\\defcaptionname{}{}{}"),
LatexCommandSignature("\\defcaptionname*{}{}{}"),
LatexCommandSignature("\\DefineBibliographyExtras{}{}"),
LatexCommandSignature("\\DefineBibliographyStrings{}{}"),
LatexCommandSignature("\\definecolor[][]"),
LatexCommandSignature("\\definecolor{}{}{}"),
LatexCommandSignature("\\DefineHyphenationExceptions{}{}"),
LatexCommandSignature("\\definespotcolor{}{}{}"),
LatexCommandSignature("\\directlua{}"),
LatexCommandSignature("\\DisableLigatures{}"),
Expand Down Expand Up @@ -579,7 +584,10 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\newabbreviation[]{}{}"),
LatexCommandSignature("\\newacronym{}{}"),
LatexCommandSignature("\\newacronym[]{}{}"),
LatexCommandSignature("\\NewBibliographyString{}"),
LatexCommandSignature("\\newboolean{}"),
LatexCommandSignature("\\newcaptionname{}{}{}"),
LatexCommandSignature("\\newcaptionname*{}{}{}"),
LatexCommandSignature("\\newcolumntype{}{}"),
LatexCommandSignature("\\newcommand{}{}"),
LatexCommandSignature("\\newcommand{}[]{}"),
Expand Down Expand Up @@ -638,6 +646,8 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\printglossary[]"),
LatexCommandSignature("\\printnoidxglossary[]"),
LatexCommandSignature("\\printunsrtglossary[]"),
LatexCommandSignature("\\providecaptionname{}{}{}"),
LatexCommandSignature("\\providecaptionname*{}{}{}"),
LatexCommandSignature("\\providecommand{}{}"),
LatexCommandSignature("\\providecommand{}[]{}"),
LatexCommandSignature("\\providecommand*{}{}"),
Expand All @@ -651,6 +661,8 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\ref*{}", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\renewbibmacro{}{}"),
LatexCommandSignature("\\renewbibmacro*{}{}"),
LatexCommandSignature("\\renewcaptionname{}{}{}"),
LatexCommandSignature("\\renewcaptionname*{}{}{}"),
LatexCommandSignature("\\renewcommand{}{}"),
LatexCommandSignature("\\renewcommand{}[]{}"),
LatexCommandSignature("\\renewcommand{}[][]{}"),
Expand Down Expand Up @@ -832,6 +844,7 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\todo[]{}"),
LatexCommandSignature("\\togglefalse{}"),
LatexCommandSignature("\\toggletrue{}"),
LatexCommandSignature("\\UndefineBibliographyExtras{}{}"),
LatexCommandSignature("\\unsettoc{}{}"),
LatexCommandSignature("\\url{}", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\usebibmacro{}"),
Expand Down

0 comments on commit 73c9584

Please sign in to comment.