我将 Aptana 用于我的 wen 开发项目。我想知道 Aptana 中是否有任何方法可以突出显示我的脚本文件中的相同语法(即变量名)。
例如:
function(storeItem, item) {
var total = 0;
store.each(function(rec) {
total += rec.get('data1');
}) ;
this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data1') / total * 100) + '%');
}
如果我选择storeItem
变量,那么所有命名的变量storeItem
都将突出显示。这在 Aptana 中可能吗?
或者您可以推荐另一个具有该功能的 IDE。
谢谢!