Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. {
  2. "editor.tokenColorCustomizations": {
  3. "textMateRules": [
  4. {
  5. "scope": [
  6. //following will be in italic (=FlottFlott)
  7. "comment",
  8. "keyword", //import, export, return…
  9. "constant", //String, Number, Boolean…, this, super
  10. "entity.name.type.class", //class names
  11. "storage.modifier", //static keyword
  12. "storage.type.class", //class keyword
  13. "storage.type.function",
  14. "storage.type.extends",
  15. "storage.type"
  16. ],
  17. "settings": {
  18. "fontStyle": "italic"
  19. }
  20. },
  21. {
  22. "scope": [
  23. //following will be excluded from italics (VSCode has some defaults for italics)
  24. "invalid",
  25. "keyword.operator",
  26. "constant.numeric.css",
  27. "keyword.other.unit.px.css",
  28. "constant.numeric.decimal.js",
  29. "constant.numeric.json"
  30. ],
  31. "settings": {
  32. "fontStyle": ""
  33. }
  34. }
  35. ]
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement