Autofill in Aptan

I am using Aptana studio 3 for web programming. I also use jQuery for the same purpose. The problem is autocomplete in Aptana. For example, I get the following:

$('div').click(function() { ${0: \}}); 

Instead of this:

 $('div').click(function() { }); 

Maybe there is a way to change it (the same thing happens with other jQuery aoutocomplete options). Thanks!

+4
source share
3 answers

I had a similar one when you tried to enter $.ajax... Aptana would insert Array(...

I found that I need to install jQuery package!

Go to the command menu> bundle development> install bundle

In the "select bundle to install" window, select jQuery and click "OK." It! You may need to restart Aptana.

Hope this helps.

+5
source

Try using the latest vsdoc file and use it to complete the code. The latter can be found here . Also check out the following question .

0
source

I don't know if this will work for you, but you can try it if you use only JavaScript and jQuery. https://github.com/JockiHendry/aptanastudio-contentassist-patch

0
source

All Articles