I have problems using the code completion/assist for jQuery in the latest Aptana plug-in (3.4). It doesn't seem to be able to infer types:
(function($) {
$('p .test').each(function() {
var $this = $(this);
$(this).*DOES WORK*
$this.*DOESN'T WORK*
});
}(jQuery));
When trying to get code completion for a variable created out of $(this), I don't get any assist :( Do you have any advice how to get this solved?