Skip to content

Commit

Permalink
Minor changes made to rule names.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.textmate.org/trunk/Bundles/Ini.tmbundle@835 dfb7d73b-c2ec-0310-8fea-fb051d288c6d
  • Loading branch information
sorbits committed May 4, 2005
1 parent e75f49f commit 82ee21c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Syntaxes/Ini.plist
Expand Up @@ -8,26 +8,26 @@
patterns = (
{
match = "^[\\s]*(;|#).*";
name = comments;
name = "comment.line.ini";
},
{
match = "\\<([a-zA-Z_]+)\\>\\s*(=)";
name = keyword.definition;
name = "keyword.definition.ini";
},
{
match = "^\\[(.*)\\]";
name = "group-title";
name = "entity.name.group-title.ini";
},
{
begin = "'";
end = "'";
name = "string.single-quoted";
name = "string.single-quoted.ini";
swallow = "\\\\.";
},
{
begin = "\"";
end = "\"";
name = "string.double-quoted";
name = "string.double-quoted.ini";
}
);
smartTypingPairs = (("(", ")"), ("[", "]"), ("{", "}"), ("\"", "\""), ("'", "'"));
Expand Down

0 comments on commit 82ee21c

Please sign in to comment.