Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

for instance:

function (jQuery) {
   jQuery.extend(1,2,3);   
}  

Since I am not using the global jQuery object, intellij is not helping out at all, and thinks INCORRECTLY that I am trying to call extends method in the prototype library which is also in the project ( dont ask why ).

I would like to tell Intellij, that this jQuery.extend method call, and all other things related to the jQuery object in this scope, should use the same reference as the one I am about to point out (like in CTRL + SPACE menu but the jQuery extends method is not being listed there for some weird reason so there should be another way of pointing it out) Then I could get the correct help immediately for the remaining use of that object. ''

If I do a call:

function (jQuery) {
   jQuery.each([1,2,3], function() {}  // Able to navigate with F3 to implementation od this one, far down in the list. I should here, be asked if I want to use that one as a future reference for this object  

   // From now on, jQuery should be ranked highest
   jQuery.jQ<CTRL SPACE> // should help me... 
} 

Basically, any declared property, variable, function and etc should have a set of preferences for various things, which could be altered. Especially good in dynamic languages, when Intellij have a hard time figuring things out. It would allow us to "cast" js variables, but only within the editor, because we there now what type it has if it is important.

Take for example a distant method with several instance parameters.

My two cents.

Is this possible already?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.