Tagged Questions
Source Code Beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA
9
votes
2answers
1k views
Can Uncrustify align colons in Objective-C method calls?
I am using uncrustify 0.52. When I run it against Objective-C files, it wants to convert method invocations like this:
[NSApp beginSheet:startTimerDialog
modalForWindow:nil
modalDelegate:nil
...
6
votes
1answer
62 views
Remove, or ignore whitespace missing after parentheses
I'm trying to configure Uncrustify to prettify some obj-c files.
With a code like this:
- (IBAction) blah:(id)sender {
which is fine to me, I obtain this:
- (IBAction) blah:(id) sender {
...
6
votes
3answers
199 views
ctags multi-line C function prototypes
Is there a way for ctags to handle multiline function prototypes in C?
I've searched around and the --fields=+S is supposed to do multiline prototypes, but I can't get it to work:
ctags -x ...
3
votes
0answers
79 views
Is there an Uncrustify config for Google's Objective-C style?
Is there a config file for Uncrustify that will format Objective-C per Google's Objective-C style guide?
Example config files for Uncrustify look a bit daunting and I'm hoping that I won't need to ...
3
votes
1answer
149 views
New line after @interface before {
What switch or setting in uncrustify affects the { for @interface and @protocol?
3
votes
0answers
350 views
Anyone using a code formatter in xcode other than uncrustify?
For a while now I've been using uncrustify within xcode to format the code. But I find myself constantly frustrated with it. I'm right up to date with the latest version of uncrustify, but I'm still ...
2
votes
1answer
77 views
Using uncrustify without aligning under open parenthesis
I'm trying to configure uncrustify (a source code beautifier) to
avoid aligning beneath a previous open parenthesis. For
example, I'd like the code to look like this (from file
indent_paren.c):
void ...
2
votes
1answer
468 views
Uncrustify: Single Line Method Names & Remove spaces between double asterisk
Two related questions here.
1) What setting do I need to use to make multiline method name a single line? For example, I have this:
- (NSArray *)nodesForXPath:(NSString *)xpath
...
1
vote
0answers
87 views
Blank line after curly brace in function with uncrustify
I have configured xcode to use Uncrustify to beautify the code. I modified the Uncrustify configuration file and the resulting code is almost as desired.
One thing I don't like is the removal of a ...
1
vote
0answers
83 views
Git is ignoring whitepace
I've been using git-svn for a new project that I'm currently the sole developer on.
I've got numerous files and version and the subversion and git repositories are in sync.
I've used uncrustify to ...
1
vote
0answers
278 views
How do I get uncrustify to indent BEGIN_MESSAGE_MAP regions?
I'm trying to use uncrustify on a large inherited C++ codebase and I can't figure out how to get it to indent the following code segment like the example here.
BEGIN_MSG_MAP(CMyDlg)
...
0
votes
0answers
12 views
Is there a maximum indentation at once setting for Uncrustify?
I have a block of objective c code that looks like this
[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
BOOL isDir;
if ([fm fileExistsAtPath:path ...
0
votes
1answer
26 views
What does “Force” do in Uncrustify?
Many of the options include the "Force" option:
sp_paren_paren { Ignore, Add, Remove, Force }
Add or remove space between nested parens
What does it mean? How is it ...
0
votes
1answer
52 views
How to add a new line before #pragma mark using uncrustify?
Is it possible to have uncrustify add some empty lines before/after the #pragma mark - directives?
If that is important, I am referring to Xcode 4.2 and iOS development in objC.
[EDIT] What I mean is ...
0
votes
1answer
108 views
How to make Uncrustify force blank lines between functions?
I've been working on my uncrustify config for a few hours now and I'm very close to having it the way I need it. However, I can't find an option to control newlines between function bodies. Uncrustify ...
0
votes
4answers
168 views
Condense multiline C function prototypes
I have C function prototypes (certain windows api header files) that look like:
int
foo
(
int
a
,
int
*
b
)
;
(they seem to have no coding convention)
which I am trying to programmatically turn ...
0
votes
1answer
202 views
How do I install uncrustify?
How do I install uncrustify? I followed the instruction to install uncrustify but when I run it, it does not work. Can anyone give me some help installing this tool? I want to run it on objective-c ...
0
votes
1answer
191 views
C++ / Uncrustify / Indenting base class specifications
How do I setup uncrustify so that this code:
static const class Example
: Int1
, Int2
, Int3
looks like this:
static const class Example
: Int1
, Int2
, Int3
I can not find any ...
0
votes
1answer
252 views
Uncrustify spacing issue with macro inside method call
I am attempting to use Uncrustify on a project of mine, but I am running into some issues with spacing changes that it makes when a macro is used as the receiver of an Objective-C message. For ...