Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. configuration {
  2. default:
  3. keyword = keyword.control;
  4. operation = keyword.operator;
  5. comment:
  6. line = "//";
  7. block:
  8. start = "/*";
  9. end = "*/";
  10. }
  11.  
  12. rules {
  13. keyword:
  14. Workflow, Init = storage.type;
  15. Task = entity.name.class;
  16. Entry, Leave = support.variable;
  17. Next = storage.modifier;
  18. Action = storage.modifier;
  19. operation:
  20. Task = emphasis;
  21. Next = storage.type;
  22. }
  23.  
  24. matches {
  25. "action" = meta.tag;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement