Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
72 views

Can Eclipse's Java formatter indent wrapped lines differently than new blocks?

I like to format my code like this: void someFunction() { normalLine(); reallyLongLineThatNeedsToBeWrapped( OnlyIndentOneSpaceHere = true); normalLine(); } But from my experimenting ...
2
votes
2answers
413 views

Online C++ Code Formatter/Beautifier

There is good local beautifier for c++, AStyle. I'm interested in online tools, because i'm using computers where i shouldn't use programs which aren't installed by administrator.
2
votes
2answers
407 views

Groovy Eclipse Autoformat?

Using Eclipse 3.6 and Groovy 2.0.1.20100319-1100-e35-RELEASE, auto-format does nothing. That is, for a given groovy file, Source > Format does nothing. Any thoughts?
1
vote
3answers
100 views

Source Formatting Tool for OSX?

I run on OSX and I don't have Dreamweaver. I use Coda but I need an HTML Source Formatting tool. Is there a web-based tool or other app for me?
1
vote
2answers
214 views

D2010: Format only selected text?

Is there any way the Format Source (CTRL+D) command applies only to the selected text (or the current method the caret is in)? I'm asking this because the formatter is quite buggy (ok, actually ...
1
vote
1answer
136 views

Python Source Formatter

I am building a Python application and I have a class with a lot of functions (more than 20). I'm developing it using Eclipse with PyDev. While the general interface is good, I have the problem of ...
1
vote
5answers
348 views

How do I prevent HTML source formatting from affecting output?

It looks like extra line breaks in the HTML code may add unwanted spaces in the final output. I always thought that no matter how I layout my HTML code, it will not affect the way the rendered result ...