For the official information, support and the latest updates please redirect to the ColdFusion support page on JetBrains website and follow the links therefrom.
Wednesday, March 21, 2012
THIS BLOG IS OUT OF DATE AND DISCONTINUED
For the official information, support and the latest updates please redirect to the ColdFusion support page on JetBrains website and follow the links therefrom.
Monday, September 13, 2010
2.54 it out!
Tuesday, July 27, 2010
Plugin version 2.53
Sunday, June 6, 2010
Tags foldind and functions' structure view in 2.50
It can be invoked through Ctrl+F12 hotkey from source code or opened as a side panel.
And now you can fold your tags (cfcomponent, cffunction, cfscript) (Ctrl + '+' & Ctrl + '-').
Enjoy!
Monday, April 19, 2010
More robust java and cfml completion in 2.49
That's how it looks like:
What about init method, which is cfml specific, it'll be inserted if you select appropriate constructor in completion popup. And here is an example again:
And as I finally managed to close CFML-44, java completion now differs between the class and the instance. That is to say, before init() your completion has static scope, and normal after.
And the last good piece of news, java refactoring (as function rename) works with coldfusion too (that is what this bug CFML-88 of Kevin was about).
Enjoy! And don't forget to send feedback!
Friday, March 19, 2010
MXUnit support
Hello, everybody!
Great to inform you that now we are supporting testing via MXUnit, using local server! It is available in latest, 2.48 plugin version.
More info on MXUnit you may find on their official site: http://www.mxunit.org/
Creating MXUnit run configuration in IntellijIDEA is extremely easy.
Suppose, you want to test a single component, inherited from mxunit.framework.TestCase.
Add new MXUnit configuration and fill two fields:
- Web path (an URL, by which your coldfusion component is accessible),
- and File (a local path to your component, let say to your component's file)
And here you are!
You'll receive tests results in your test console. It'll show you what tests passed and what failed.
Moreover you'll have 'Jump to source' by F4 or double click option and navigating from stack trace.