Marc Esher
unread,Oct 27, 2009, 8:58:18 PM10/27/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cfecli...@googlegroups.com
hey guys,
on this week's TWiCF podcast, the guys mentioned that when you open up "full cfscript components" in cfeclipse, you lose all coloring and whatnot because there are no cfscript tags.
I'm wondering: for those of you familiar with the editors, what do you think the level of effort would be in getting this into CFE sooner rather than later? I ask this as someone who's looked at the editor code and curled up in the fetal position crying for 2 days.
And have any of you guys moved on to doing a lot of CF9 work and this problem yourselves?
To see what I mean, just drop this into a CFC and open it up... it's all notepadish.
component {
public Order function init(required numeric id, array items = ArrayNew(1), String shippingMode="StandardShipping" ){
StructAppend(variables,arguments);
return this;
}
public void function dumpVars(){
writeDump(variables);
}
}
Thanks all.
Marc