Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syntaxes/huntconfig.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
},
{
"comment": "Hunt find_newmode values",
"match": "^(find_newmode)=(opplayer[1-5]|applayer[1-5]|queue[1-20])?",
"match": "^(find_newmode)=(opplayer[1-5]|applayer[1-5]|queue([1-9]|1[0-9]|20))?",
"captures": {
"1": {
"name": "entity.name.type.huntconfig.key"
Expand Down
24 changes: 24 additions & 0 deletions syntaxes/seqconfig.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,30 @@
}
}
},
{
"comment": "Sequence replaceheld values",
"match": "^(righthand|lefthand)=(hide|\\w+)\\b",
"captures": {
"1": {
"name": "entity.name.type.seqconfig.key"
},
"2": {
"name": "constant.numeric.seqconfig.value"
}
}
},
{
"comment": "Sequence replay values",
"match": "^(replayoff|replaycount)=(\\d+)\\b",
"captures": {
"1": {
"name": "entity.name.type.seqconfig.key"
},
"2": {
"name": "constant.numeric.seqconfig.value"
}
}
},
{
"comment": "Sequence preanim_move values",
"match": "^(preanim_move)=(\\w+)\\b",
Expand Down