mirror of
https://github.com/jeremysrand/Apple2GSBuildPipeline.git
synced 2024-11-29 16:49:24 +00:00
Get code and data blocks working in the orcam xclangspec file
This commit is contained in:
parent
0f8e0b029b
commit
1c9c4841f8
@ -15,29 +15,6 @@
|
||||
};
|
||||
},
|
||||
|
||||
{
|
||||
Identifier = "xcode.lang.asm.orcam.start";
|
||||
Syntax = {
|
||||
CaseSensitive = NO;
|
||||
Words = (
|
||||
"start",
|
||||
"data",
|
||||
);
|
||||
Type = "xcode.syntax.keyword";
|
||||
};
|
||||
},
|
||||
|
||||
{
|
||||
Identifier = "xcode.lang.asm.orcam.end";
|
||||
Syntax = {
|
||||
CaseSensitive = NO;
|
||||
Words = (
|
||||
"end",
|
||||
);
|
||||
Type = "xcode.syntax.keyword";
|
||||
};
|
||||
},
|
||||
|
||||
{
|
||||
Identifier = "xcode.lang.asm.orcam.keyword";
|
||||
Syntax = {
|
||||
@ -147,12 +124,14 @@
|
||||
"case",
|
||||
"codechk",
|
||||
"copy",
|
||||
"data",
|
||||
"datachk",
|
||||
"dc",
|
||||
"direct",
|
||||
"ds",
|
||||
"dynchk",
|
||||
"eject",
|
||||
"end",
|
||||
"entry",
|
||||
"equ",
|
||||
"err",
|
||||
@ -178,6 +157,7 @@
|
||||
"privdata",
|
||||
"rename",
|
||||
"setcom",
|
||||
"start",
|
||||
"symbol",
|
||||
"title",
|
||||
"using",
|
||||
@ -227,7 +207,8 @@
|
||||
Syntax = {
|
||||
Tokenizer = "xcode.lang.asm.orcam.lexer";
|
||||
IncludeRules = (
|
||||
"xcode.lang.asm.orcam.block"
|
||||
"xcode.lang.asm.orcam.codeblock",
|
||||
"xcode.lang.asm.orcam.datablock",
|
||||
);
|
||||
Type = "xcode.syntax.plain";
|
||||
};
|
||||
@ -243,8 +224,6 @@
|
||||
"xcode.lang.string",
|
||||
"xcode.lang.character",
|
||||
"xcode.lang.number",
|
||||
"xcode.lang.asm.orcam.start",
|
||||
"xcode.lang.asm.orcam.end",
|
||||
"xcode.lang.asm.orcam.keyword",
|
||||
"xcode.lang.asm.orcam.identifier",
|
||||
);
|
||||
@ -300,12 +279,12 @@
|
||||
},
|
||||
|
||||
{
|
||||
Identifier = "xcode.lang.asm.orcam.block";
|
||||
Identifier = "xcode.lang.asm.orcam.codeblock";
|
||||
Syntax = {
|
||||
Tokenizer = "xcode.lang.asm.orcam.lexer";
|
||||
Start = "xcode.lang.asm.orcam.start";
|
||||
End = "xcode.lang.asm.orcam.end";
|
||||
Recursive = YES;
|
||||
Start = "start";
|
||||
End = "end";
|
||||
Recursive = NO;
|
||||
Foldable = YES;
|
||||
Type = "xcode.syntax.definition.function";
|
||||
IncludeRules = (
|
||||
@ -313,4 +292,17 @@
|
||||
};
|
||||
},
|
||||
|
||||
{
|
||||
Identifier = "xcode.lang.asm.orcam.datablock";
|
||||
Syntax = {
|
||||
Tokenizer = "xcode.lang.asm.orcam.lexer";
|
||||
Start = "data";
|
||||
End = "end";
|
||||
Recursive = NO;
|
||||
Foldable = YES;
|
||||
Type = "xcode.syntax.definition.function";
|
||||
IncludeRules = (
|
||||
);
|
||||
};
|
||||
},
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user