When I m using jQuery in no conflict mode I still like the convenience of the $ object so I tend to structure my jQuery like:
(function($) {
//Now I use $ instead of jQuery
$(document).ready(function(){
//some code in here etc
});
})(jQuery)
But this seems to break code assist, it works for the jQuery object but not the $ object. Is there any way to configure an Aptana project to handle this?