Advertisement
Guest User

embyr.vim

a guest
Feb 18th, 2023
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.86 KB | None | 0 0
  1. syntax case match
  2.  
  3. set autoindent
  4.  
  5. syntax keyword embyrAction PLAYER_ACTION IF_PLAYER ENTITY_ACTION IF_ENTITY SET_VAR IF_VAR GAME_ACTION IF_GAME SELECT_OBJECT ELSE CALL_FUNCTION START_PROCESS CONTROL REPEAT
  6. highlight link embyrAction Statement
  7.  
  8. syntax keyword embyrDecl PLAYER_EVENT ENTITY_EVENT PROCESS FUNCTION
  9. highlight link embyrDecl Function
  10.  
  11. syntax keyword embyrValue txt num loc var g_val vec snd pot tag item
  12. highlight link embyrValue Type
  13.  
  14. syntax keyword embyrTarget Selection Default Killer Damager Victim Shooter Projectile LastEntity AllPlayers
  15. " highlight link embyrTarget Constant
  16.  
  17. syntax region embyrString start=/"/ skip=/\\\"/ end=/"/
  18. highlight link embyrString String
  19.  
  20. syntax region embyrRawString start=/`/ end=/`/
  21. highlight link embyrRawString String
  22.  
  23. syntax region embyrComment start=/#/ end=/[\r\n]/
  24. highlight link embyrComment Comment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement