vote up 0 vote down star
1

How can I force flex to cuddle my curly-braces instead of putting them on a new line?

flag

75% accept rate
What language/IDE/text editor/development environment are you using? The answer will be different depending on what language/environment you're using. – floppydisk Aug 3 at 0:56
1  
Why exactly do you want to do this anyway? It makes your code less readable (which generally isn't a huge problem for generated code, but still). – Imagist Aug 3 at 1:12
1  
I'm using the Flex IDE for as3. The fact that it makes your code less readable is completely an opinion - gskinner.com/blog/archives/…. – David Aug 3 at 1:47
2  
Cuddly braces, snuggly brackets. Awww :) – Juliet Aug 3 at 2:52
Just don't. You're not trying to save paper, are you? – bug-a-lot Aug 3 at 7:22

2 Answers

vote up 0 vote down check

I'm going to make the assumption that you are talking about Flex Builder. I'm specifically using Flex Builder 4 beta (Flash Builder), but I think this applies for Flex Builder 3.

When asking fb to create a new actionscript class, you can adjust the template and set it to cuddle the braces, but only for the class definition. The template settings can be found under Window -> Preferences -> Flash Builder -> File Templates.

A better option is the Flex Formatter plug-in, which can be found at Source-Forge here. Note the installation instructions here which are different depending on which version of Eclipse you are running.

Once you get the plugin installed, you'll see a number of new setting available under Window -> Preferences -> Flex Formatting. The one you are looking for is buried a bit. Look under Flex Formatting -> ActionScript -> Newlines/Wrapping -> Line Breaks -> Brace Style.

Set as desired.

Once that is all done, just go to your selected actionscript file, and press the Ctrl+Shift+F keyboard shortcut. And there you have it.

Easy Peasy, Lemon Squeezy.

link|flag
Thank you! That's exactly what I was looking for. – David Aug 4 at 2:30
vote up 0 vote down

what exactly do you mean force them on a new line? when you define a method? or when your doing bindings?

link|flag
An example of cuddled vs new line: gskinner.com/blog/archives/… – David Aug 3 at 1:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.