Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syntax highlight for Sublime Text #52

Closed
lhartikk opened this issue Mar 11, 2014 · 3 comments
Closed

Syntax highlight for Sublime Text #52

lhartikk opened this issue Mar 11, 2014 · 3 comments

Comments

@lhartikk
Copy link
Owner

http://sublimetext.info/docs/en/extensibility/syntaxdefs.html

@lhartikk
Copy link
Owner Author

@vasiliybondarenko
Copy link
Contributor

There is a typo in arnoldc.tmLanguage.xml:
Syntax Name
I suppose it should be ArnoldC

@rootmeanclaire
Copy link
Contributor

Here's a fixed version:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>fileTypes</key>
    <array>
        <string>arnoldc</string>
    </array>
    <key>name</key>
    <string>ArnoldC</string>
    <key>patterns</key>
    <array>
        <dict>
            <key>match</key>
            <string>HEY CHRISTMAS TREE|YOU SET US UP|YOU HAVE BEEN TERMINATED|GET TO THE CHOPPER|ENOUGH TALK|HERE IS MY INVITATION|GET UP|LET OFF SOME STEAM BENNET|HASTA LA VISTA, BABY</string>
            <key>name</key>
            <string>keyword.control</string>
        </dict>
        <dict>
            <key>match</key>
            <string>TALK TO THE HAND|YOU ARE NOT YOU YOU ARE ME|HE HAD TO SPLIT|YOU'RE FIRED|GET DOWN|GET YOUR ASS TO MARS|DO IT NOW|I LET HIM GO|CONSIDER THAT A DIVORCE|KNOCK KNOCK</string>
            <key>name</key>
            <string>keyword.control</string>
        </dict>
        <dict>
            <key>match</key>
            <string>YOU SET US UP</string>
            <key>name</key>
            <string>constant.numeric</string>
        </dict>
        <dict>
            <key>match</key>
            <string>@I LIED|@NO PROBLEMO</string>
            <key>name</key>
            <string>support.constant</string>
        </dict>
        <dict>
            <key>match</key>
            <string>LISTEN TO ME VERY CAREFULLY|IT'S SHOWTIME</string>
            <key>name</key>
            <string>entity.name.function</string>
        </dict>
        <dict>
            <key>match</key>
            <string>STICK AROUND|CHILL|BECAUSE I'M GOING TO SAY PLEASE|YOU HAVE NO RESPECT FOR LOGIC|BULLSHIT</string>
            <key>name</key>
            <string>storage.type</string>
        </dict>
        <dict>
            <key>match</key>
            <string>I NEED YOUR CLOTHES YOUR BOOTS AND YOUR MOTORCYCLE|GIVE THESE PEOPLE AIR|I'LL BE BACK</string>
            <key>name</key>
            <string>variable.parameter</string>
        </dict>
        <dict>
            <key>match</key>
            <string>".*"</string>
            <key>name</key>
            <string>string.quoted.double</string>
        </dict>
        <dict>
            <key>match</key>
            <string>\s[0-9]+</string>
            <key>name</key>
            <string>constant.numeric</string>
        </dict>
    </array>
    <key>scopeName</key>
    <string>source.arnoldc</string>
    <key>uuid</key>
    <string>6f5f460e-5ab0-4ce2-8cb7-0cafea6c46c9</string>
</dict>
</plist>

KahCosta pushed a commit to KahCosta/ArnoldC that referenced this issue Oct 25, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants