# HG changeset patch # User Tuomo Valkonen # Date 1589327044 18000 # Node ID fedc1fbea767b8ee017efb79668557bc4e1bd573 # Parent 0ac9389339bf9f269203f5b7195c888aff75aba9 typofixes diff -r 0ac9389339bf -r fedc1fbea767 README.md --- a/README.md Tue May 12 18:39:01 2020 -0500 +++ b/README.md Tue May 12 18:44:04 2020 -0500 @@ -3,7 +3,7 @@ This package provides rich LaTeX _syntax highlighting_ for VSCode. It provides _only_ syntax highlighting: no annoying snippets etc. that only serve to mess up your work. It is recommended to be combined with [texlab][]. The latter -provides a language intelligence/auto-completion and build system interface. +provides language intelligence/auto-completion and a build system interface. The present package complements texlab with richer syntax highlighting. The grammar is derived from LaTeX-Workshop, but has improvements including @@ -67,7 +67,7 @@ For example, `\lstodo{a latex-syntax todo}` will be highlighted if you do the above colour customisations and in your LaTeX source define ```tex -\newcommand{\abtodo}[2][]{\todo[color=DarkRed!40,#1]{#2}} +\newcommand{\lstodo}[2][]{\todo[color=DarkRed!40,#1]{#2}} ``` (The colour setting here only affects LaTeX output, not VSCode.)