# HG changeset patch # User Tuomo Valkonen # Date 1589293523 18000 # Node ID 6c4986d204ac19b8f5f587079eb45ab80b6d2132 # Parent aa9fc390ce91e5a09ff659546ac5963f3e248dcf README improvements diff -r aa9fc390ce91 -r 6c4986d204ac README.md --- a/README.md Mon May 11 17:50:17 2020 -0500 +++ b/README.md Tue May 12 09:25:23 2020 -0500 @@ -1,6 +1,6 @@ # latex-syntax -This package provides syntax highlighting for LaTeX to VSCode. It is intended +This package provides LaTeX syntax highlighting for VSCode. It is intended to be used as together with [texlab][] to provide richer syntax highlighting. The grammar is derived from LaTeX-Workshop, but has improvements including @@ -18,42 +18,42 @@ ### Regarding `todonotes` and `footnote` support To enable syntax highlighting for `\todo` and `\footnote`, add the following -to your `settings.json` (Cmd+Shift+P, “Open Settings (JSON)”): +(with possibly customised colours) to your user `settings.json` +(Cmd+Shift+P, “Open Settings (JSON)”): ```json - - "editor.tokenColorCustomizations": { - "textMateRules": [ - { - "scope": "entity.name.todo.latex", - "settings": { - "foreground": "#d17000", - "fontStyle": "italic", - } - }, - { - "scope": "support.function.todo.latex", - "settings": { - "foreground": "#d17000", - "fontStyle": "italic", - } - }, - { - "scope": "entity.name.footnote.latex", - "settings": { - "foreground": "#e28000", - "fontStyle": "italic", - } - }, - { - "scope": "support.function.footnote.latex", - "settings": { - "foreground": "#e28000", - "fontStyle": "italic", - } +"editor.tokenColorCustomizations": { + "textMateRules": [ + { + "scope": "entity.name.todo.latex", + "settings": { + "foreground": "#d17000", + "fontStyle": "italic", + } + }, + { + "scope": "support.function.todo.latex", + "settings": { + "foreground": "#d17000", + "fontStyle": "italic", } - ], - }, + }, + { + "scope": "entity.name.footnote.latex", + "settings": { + "foreground": "#e28000", + "fontStyle": "italic", + } + }, + { + "scope": "support.function.footnote.latex", + "settings": { + "foreground": "#e28000", + "fontStyle": "italic", + } + } + ], +}, ``` [texlab]: https://marketplace.visualstudio.com/items?itemName=efoerster.texlab