From 115c45cf85f7f790573a7c93792950c1290dee37 Mon Sep 17 00:00:00 2001 From: duff Date: Tue, 3 May 2005 22:36:01 +0000 Subject: [PATCH] Using the new entity.* hierarchy for functions, classes, and tags. git-svn-id: http://macromates.com/svn/Bundles/trunk/Bundles/JavaScript.tmbundle@829 dfb7d73b-c2ec-0310-8fea-fb051d288c6d --- Syntaxes/JavaScript.plist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Syntaxes/JavaScript.plist b/Syntaxes/JavaScript.plist index df98d83..e61941d 100644 --- a/Syntaxes/JavaScript.plist +++ b/Syntaxes/JavaScript.plist @@ -22,8 +22,8 @@ match = "^\\s*(function)\\s*([a-zA-Z_]\\w*)\\s*\\(([^)]*)\\)"; captures = { 1 = { name = "keyword.declaration.js"; }; - 2 = { name = "function-name"; }; - 3 = { name = "function-argument"; }; + 2 = { name = "entity.name.function"; }; + 3 = { name = "entity.parameter.variable.function"; }; }; },