-
Notifications
You must be signed in to change notification settings - Fork 0
SyntaxSpecification
Matthew L Daniel edited this page Jul 10, 2015
·
3 revisions
- summary Defines syntax types
- labels Specifications
Defines syntax types. Files have the ending .xcsynspec
|| `Identifier ` || string || Unique Identifier || || `Name ` || string || Name || || `BasedOn` || string || Unique Identifier of parent || || `IncludeInPrefs ` || bool || || || `NameFormat ` || string || || || `Color ` || string || default color || || `OldUserDefault ` || string || Only used by built in filetypes ||
From the D for XCode plugin
(
{
Identifier = "xcode.syntax.d.module";
IncludeInPrefs = NO;
NameFormat = "module %@";
},
{
Identifier = "xcode.syntax.d.import";
IncludeInPrefs = NO;
NameFormat = "import %@";
},
// MARK: Functions and Methods
{
Identifier = "xcode.syntax.definition.d.function";
BasedOn = "xcode.syntax.definition.function";
IncludeInPrefs = NO;
},
{
Identifier = "xcode.syntax.declaration.d.function";
BasedOn = "xcode.syntax.declaration.function";
IncludeInPrefs = NO;
},
)