Guest User

Untitled

a guest
Oct 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. "editor.tokenColorCustomizations": {
  2. "textMateRules": [
  3. {
  4. "scope": [
  5. //following will be in italics (=Pacifico)
  6. "comment",
  7. "entity.name.type.class", //class names
  8. "keyword", //import, export, return…
  9. //"support.class.builtin.js", //String, Number, Boolean…, this, super
  10. "storage.modifier", //static keyword
  11. "storage.type.class.js", //class keyword
  12. "storage.type.function.js", // function keyword
  13. "storage.type.js", // Variable declarations
  14. "storage.type.generic.java",
  15. "keyword.control.import.js", // Imports
  16. "keyword.control.from.js", // From-Keyword
  17. //"entity.name.type.js", // new … Expression
  18. "keyword.control.flow.js", // await
  19. "keyword.control.conditional.js", // if
  20. "keyword.control.loop.js", // for
  21. "keyword.operator.new.js", // new
  22. ],
  23. "settings": {
  24. "fontStyle": "italic"
  25. }
  26. },
  27. {
  28. "scope":[
  29. "storage.type.annotation"
  30. ],
  31. "settings": {
  32. "fontStyle": "italic"
  33. }
  34. }
  35. {
  36. "scope": [
  37. //following will be excluded from italics (My theme (Monokai dark) has some defaults I don't want to be in italics)
  38. "invalid",
  39. "keyword.operator",
  40. "constant.numeric.css",
  41. "keyword.other.unit.px.css",
  42. "constant.numeric.decimal.js",
  43. "constant.numeric.json",
  44. "entity.name.type.class.js"
  45. ],
  46. "settings": {
  47. "fontStyle": ""
  48. }
  49. }
  50. ]
  51. }
Add Comment
Please, Sign In to add comment