2
votes
2answers
205 views
How to disable the Formatter in Delphi 2010
Hello,
The formatter in Delphi 2010 is really an annoying thing to me.
I prefer formatting my code manually.
I believe I do it better.
How can I disable it?
NOTE: Answers on why I don't use it in …
0
votes
2answers
69 views
Automapper Formatter not working
I'm trying to add a formatter to my Automapper configuration to style all DateTime? fields. I've tried adding my formatter globally:
Mapper.AddFormatter<DateStringFormatter>();
And on the …
1
vote
6answers
281 views
Code formatter / beautifier for C on Linux for Emacs user
I'm a Linux user looking for a code beautifier which will take files containing C code and format them to specification. Specifically, I'm looking to:
Change all indentations to be 8 spaces
Format …
1
vote
3answers
205 views
Is there any way to format a complete python buffer in emacs with a key press?
I am looking for any way to have Emacs format a Python buffer by hitting a few keys. By format, I mean:
Replace tabs with 4 spaces
Wrap all long lines correctly at 79 chars. This includes wrapping …
0
votes
2answers
170 views
Cocoa NSNumberFormatterCurrencyStyle without “$” return zero
I have a number formatter set up to convert currency strings to decimal values. The problem is that if the text string does not have a leading dollar sign ("$"), it gets converted to 0, rather than a …
3
votes
3answers
129 views
Python Formatter Tool
I was wondering if there exists a sort of Python beautifier like the gnu-indent command line tool for C code. Of course indentation is not the point in Python since it is programmer's responsibility …
1
vote
3answers
396 views
Make Eclipse formatter ignore comments?
Is there a way to make Eclipse's built-in formatter ignore comments? Whenever I run it, it turns this:
/*
* PSEUDOCODE
* Read in user's string/paragraph
*
* Three cases are …
5
votes
1answer
295 views
How to generate an Eclipse formatter configuration from a checkstyle configuration?
I have a checkstyle configuration XML file and want to automatically generate an Eclipse formatter configuration from this. Is there any tool that can do this?
0
votes
4answers
490 views
What is the Java equivalent of C’s printf %g modifier?
I tried using Formatter.format, but that seems to leave the mantissa on numbers with 0 mantissa, whereas the C version does not. Is there an equivalent of C's %g modifier in Java, and if not, is there …
1
vote
4answers
148 views
Which is best free distributable code to html converter
In my application, I have a requirement to convert Java/VB/VB.net/etc program to HTML, and then use that HTML page (to insert in Word doc).
Sure we can write code for this, but this will entail …
1
vote
3answers
594 views
Objective-C style formatter
I'm a newbie on Objective-C programming and aiming to follow Google's code convention: http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml.
Some code formatting tool would be handy to …
3
votes
7answers
3k views
Any online xml formatter or formatter in free text editor?
Any online xml formatters? Ones that properly indent the tags.
Or any free Windows text editor which has a built-in xml formatter?
7
votes
2answers
330 views
Can the eclipse formatter be used stand-alone
Is there a way to use the formatter that comes with eclipse, outside of eclipse? I would like to format some java files using my formatter.xml file that I have configured using eclipse. Does anyone …
1
vote
4answers
375 views
CSS formatter NOT based on CSS Tidy?
I can't find a css formatter (web based or Windows app) which formats the css where it puts the open brace on its own line aligned with its close brace, plus indents the attributes. The web based css …
1
vote
4answers
3k views
How to format a currency datafield in Flex
I have an xml file providing data for a datagrid in Flex 2 that includes an unformatted Price field (ie: it is just a number).
Can anyone tell me how I take that datafield and format it - add a …
