In https://stackoverflow.com/questions/12989859/what-is-the-best-ide-for-angularjs
Tonte Pouncil mentioned that it's possible to add angular.js as a library in jsdt-jquery. How does one go about doing this? thanks!
If you install https://github.com/angelozerr/angularjs-eclipse, you will benefit from
AngularjS features, in other words completion, hyperlink in HTML editor and Javascript editor.
jQuery completion because AngularJS Eclipse is based on the Javascript Inference engine tern.js.
Actually it is possible to add libraries to JSDT as well. I am not aware of such libraries. But there is angularjs-eclipse Eclipse plugin, see https://github.com/angelozerr/angularjs-eclipse
Related
I'm trying to develop a javascript project with eclipse. I created a JavaScript Project and I added many external JS libraries (Right click on Project --> JavaScript --> Include Path --> Add JavaScript Library ...). After this, I expected completion proposals (what is obtained with CTRL + space, just to be clear) during the development of the script in my HTML page about my external libraries, but I have no suggestions. Anyone can help me?
If you wish to have powerful JavaScript completion inside Eclipse, I suggest you that you install tern.java (disclaimer, I'm the author of tern.java). It support several JavaScript frameworks like jQuery, node, RequireJS, Angular.
Is there any way to use the Template Editor and some HTML editor at the same time? I would like features like autocomplete for HTML in the Template Editor, or even CSS autocomplete.
I am currently with the Scala IDE Eclipse 3.7.2.
PS1: I am a very beginner in Play/Scala, but I decided to install Aptana (from update site) for the very small but comfortable niceties it provides, so, dropped the play template editor for a moment. Aptana has also a coffeescript editor so, it helps while I am studying backbone with cofeescript.
IntelliJ Idea with scala and play2 plugins works fine for me, autocomplete even for routes file.
I have never used Scala IDE but I know Guillaume Bort, the creator of PlayFramework, has created a Sublime Text 2 plugin for Playframework. It has autocompletion on most file types.
The problem was fixed in this release of Play plugin for the Scala Eclipse IDE:
http://scala-ide.org/blog/play-0.4.0-announcement.html
I just love AngularJs. I write all my projects in netbeans and I would like to stick with netbeans. I searched over the net for a plugin that supports AngularJs in netbeans, with no luck.
There is a plugin, but it seems not to work, or I can not get it to work.
I am not looking for a full fledged plugin, if I could get rid of the warnings in the editor I would be satisfied.
My questions:
Does anyone know a working plugin for netbeans that supports AngularJs?
If not, a link to instructions how to make netbeans understand a custom attribute would also help/
you can prefix them with data- or x- ...
Please note that I already have CSS autocomplete support active, I need the CSS3 properties and other proprietary properties for CSS like border-raduis, ::selection, -mozkit and -webkit properties.
You could install the Aptana Studio 3.0.3 plugin which has support for CSS3 properties. Aptana Ticket #1986 shows a way to enable matching for browser vendor specific extensions. Ticket #1495 is also relevant.
WARNING! I read on How do I add FTP support to Eclipse?, that the plugin could potentially overwrite or re-organise a lot of your Eclipse workspace. This is an older answer now, so the new version of plugin might be better. I wouldn't want my advice to break your Eclipse without warning you first :-)
I've been using netbeans for a couple of years now, mainly on PHP / CakePHP projects.
Recently I've started using Coldfusion, which isn't directly supported. I've found, however, that if I use PHP as a project type, I can load the files and the HTML Renderer does an admirable job with the Coldfusion tags.
I want to make it better and help the renderer to understand some of the tags and, hopefully, thereby improve code indentation and syntax highlighting.
My question, then, is how can I access the HTML dictionary to extend the vocabulary?
NB: This isn't a 'which IDE' question so don't recommend them. I want to know if and how I can achieve this in NetBeans and only Netbeans.
Here are a few ideas. If you render it in HTML, you could probably add a custom name space to the HTML. If setup correctly it can help NetBeans realize that the tags are valid and shouldn't show as an error. It might not give you all the preview and WYSIWYG functionality, but it may be better than what you are getting now. I have only done this on other platforms, but I'm pretty sure NetBeans supports it.
Also I think that NetBeans will let you add CustomTags doing something like this:
http://wiki.netbeans.org/CustomTagActions
Just to note, in terms of ColdFusion the other alternatives are NotePad++ with the CF plugin and IntelliJ now supports CF.
I really like Eclipse - the number of plugins available (SVN, Javascript, CSS, CodCollab, Flashbuilder etc.) is what makes it indispensable IMHO.
I am, however, looking forward to the new version of CFBuilder.
This answer on the same/similar question suggests that there is nothing out there for ColdFusion on netbeans : NetBeans as an editor for ColdFusion scripts?
If you want to build your own ColdFusion plugin for netbeans you need to look at plugin development; http://platform.netbeans.org/tutorials/60/nbm-google.html You could use the Dictionary project from cfeclipse as a basis for your plugin. See this Google Group thread for a bit more information