Identifier Highlight to spot everything

// Array shuffling code from Underscore.js.

_.shuffle = function(obj) {
    var shuffled = [], rand;
    each(obj, function(value, index, list) {
        rand = Math.floor(Math.random() * (index + 1));
        shuffled[index] = shuffled[rand];
        shuffled[rand] = value;
    });
    return shuffled;
};
Ready.

When the cursor is placed on a variable or a function, all other identical references will be highlighted. If the declaration is found, the sign will indicate its location.

For scope analysis and reference lookup, two libraries escope and esrefactor are being used.