# HG changeset patch # User Tuomo Valkonen # Date 1589468149 18000 # Node ID 24bbbfc71c1ba1bb6f70ea0f2215822414d44089 # Parent 1dc4f331d3d5aa4413ca0c88f52cf2c0ad2393af No language filter in `editor.tokenColorCustomizations`. (https://github.com/microsoft/vscode/issues/97753#issuecomment-628490844) Still doesn't work injecting them, though. diff -r 1dc4f331d3d5 -r 24bbbfc71c1b package.json --- a/package.json Wed May 13 15:17:53 2020 -0500 +++ b/package.json Thu May 14 09:55:49 2020 -0500 @@ -85,39 +85,37 @@ } ], "configurationDefaults": { - "[latexplus]": { - "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" + } + } + ] } } }