Source Code Beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA
2
votes
1answer
44 views
Uncrustify: nested block indeting is wrong
I have this code:
dispatch_async(dispatch_get_main_queue(), ^{
if (self.adAppearBlockIsAnimated) {
[UIView animateWithDuration:kAnimationTime animations:^{
...
3
votes
1answer
59 views
uncrustify: getting rid of “comment after function of size” (mod_add_long_function_closebrace_comment)
I ran uncrustify with "comment after function of size" set to a very small value. Now practically every function has a comment like this:
-(void) createBackgroundGradient
{
...
} /* ...
4
votes
1answer
89 views
uncrustify adds space between double-paranthesis (C/Objective-C)
I'm having a very peculiar issue with uncrustify (v0.60) that no option seems to affect. The issue only occurs when there are parenthesis enclosed within parenthesis:
// from a C header file:
#define ...
3
votes
1answer
67 views
Uncrustify breaking code at Class::method
I am trying to use Uncrustify but all configurations are breaking my code when working in xcode
std::vector<int> a;
becomes
std: : vector<int> a;
Is there a way to prevent this so ...
0
votes
0answers
28 views
Uncrustify to align cascaded “if conditions”
the combination of UniversalIndentGUI and Uncrustify works for me very fine and saves me lots of time to format the C source codes.
But I have a small extra question and want to know whether someone ...
1
vote
1answer
48 views
Uncrustify: Trim linebreaks before braces
What is the right config for uncrustify so that it removes empty lines before curly braces so that:
}
}
else
{
// foo
}
[bar tend];
}
becomes:
}
}
...
2
votes
1answer
137 views
Fully Split Long Function Calls Not Only At Commas Using Uncrustify
I'm using Uncrustify v0.60 to format my C++ source code. In order to configure Uncrustify I am using the UniversalIndentGUI v1.2.0 rev.1070.
In the Line Splitting options section of ...
0
votes
1answer
29 views
Format initialization list different from function parameter lists
I have as a C++ class constuctor
Status::Status(QObject *parent) : QObject(parent)
, m_currentPage(Status::UndefinedPage)
, m_lastPage(Status::UndefinedPage) ,
...
2
votes
1answer
66 views
Can Uncrustify be prevented from modifying certain sections of code?
Uncrustify is great, and does an excellent job of tidying code.
However, I have some C code within a file that I don't want Uncrustify to change. Is there any way I can prevent Uncrustify from ...
0
votes
0answers
51 views
Separate `if` and `else` blocks
I have almost finished creating a working configuration for Uncrustify, but I am lacking one thing. Here is what Uncrustify is currently generating out of if-else:
if (a)
{
something();
}
else
{
...
0
votes
1answer
68 views
Uncrustify option to leave whitespace on blank lines
I'm trying to find the option that leaves whitespace on blank lines. Currently uncrustify will strip all trailing whitespace (good!), however I want to keep whitespace if it's on a blank line, because ...
2
votes
1answer
139 views
Format constructor member initialization with Uncrustify
I'm using uncrustify 0.56 and I'd like to know if it's possible to format constructors like that:
MyClass::MyClass(int arg1, int arg2, int arg3) : m_arg1(arg1), m_arg2(arg2), m_arg3(arg3) {}
// ...
2
votes
1answer
187 views
Can Uncrustify and/or Universal Indent GUI split string literals?
I'm using the Universal Indent GUI and Uncrustify for my C++ project. The code width is set to 80 characters and the code format is almost satisfying. This seems to work fine for regular code, but ...
2
votes
0answers
99 views
Uncrustify for c++ adds closed parenthesis after comma templated parameters
I have the following function:
template<typename Gender, typename Age> bool checkSomething( param1, param2, param3)
{...}
when I put the following function call through Uncrustify:
if( ...
6
votes
1answer
221 views
Using Uncrustify with VIM
In my vimrc I call Uncrustify by this command:
%!uncrustify -l CPP -c D:\uncrustify\default.cfg
After that on some code I get a Windows Fatal error:
But when I call uncrustify on the same code in ...
5
votes
1answer
192 views
uncrustify space after // in wrapped command line
I use uncrustify with following parameter:
sp_cmt_cpp_start = force # Add space after opening '//'
cmt_width = 78
Input:
bi.dwSize = sizeof (bi); ...
1
vote
2answers
302 views
Uncrustify Colapse Multiline Function Call
I have function calls that look like this (for no apparent reason):
func
(
a,
b,
c
)
Is there a way to make uncrustify collapse the function into a single line? I have been trying for ...
1
vote
1answer
132 views
Uncrustify: Space between function name and brace at end of line
If I have a function like this:
- (id)init {
self = [super init];
if(self){
}
return self;
}
and I want uncrustify to output this:
- (id)init{
self = [super init];
...
0
votes
0answers
112 views
How to configure indentation for multiline comments in Uncrustify?
I'm stuck in trying to make Uncrustify indenting the multiline comments the same way as all other code.
My indenting options include "indent and aligh with tabs", and that works fine for the regular ...
2
votes
1answer
235 views
Uncrustify ObjC newline after method
Is there a way with Uncrustify to add a new line between method declarations and the open brace, similar to nl_fcall_brace, but for ObjC methods?
- (void)addPendingBuddyRequests:(NSArray *)requests {
...
1
vote
1answer
318 views
Uncrustify doesn't support for the new Objective-C syntax of LLVM 4.0
I have used Uncrustify for formatting code.
But Uncrustify doesn't support for the new Objective-C syntax of LLVM 4.0.
What am I going to do?
The Code formated by Uncrustify:
@interface ...
2
votes
1answer
316 views
Align on colons in Objective-C headers
I want to use uncrustify to align my parameters on colon, and have some limited success.
Using the information in Can Uncrustify align colons in Objective-C method calls? I have the following in my ...
0
votes
0answers
241 views
Uncrustify objective-c
I'm using the latest uncrustify from github and I've been playing with the indenter config file for hours now but I cannot seem to be able to properly beautify this objective-c method definition in my ...
0
votes
1answer
459 views
Running Uncrustify by selecting Behavior in Xcode does nothing
I installed Uncrustify as per the instructions here:
http://noiseandheat.com/blog/2012/01/uncrustifying-objective-c-source-in-xcode-4/
Used brew for installation and added new behavior in ...
7
votes
2answers
330 views
How to format source code with braces on new lines with blocks and Xcode?
Is there a way to make Xcode not reformat formatted code, or is there a tool like uncrustify that can format source code that uses blocks?
With blocks in objective-c, code has become hard to read. ...
5
votes
1answer
523 views
Vim autocmd (save file, run code formatter, reload file)
I wish to integrate the source code formatter Uncrustify with Vim. Any of the below two options will suffice.
Format the code that I am currently editing (i.e. when gq is pressed).
Format the code ...
3
votes
0answers
71 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 ...
9
votes
1answer
698 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 ...
5
votes
1answer
132 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 {
...
7
votes
2answers
1k 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 ...
0
votes
1answer
203 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 ...
4
votes
1answer
516 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
331 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
1answer
497 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 ...
1
vote
4answers
394 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 ...
7
votes
3answers
717 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 ...
5
votes
2answers
259 views
Uncrustify: Which switch or setting affects the { for @interface and @protocol?
I use Uncrustify to beautify my code:
http://uncrustify.sourceforge.net/
What switch or setting affects the { for @interface and @protocol?
1
vote
0answers
147 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 ...
0
votes
1answer
1k 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
381 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 ...
2
votes
1answer
734 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
...
0
votes
2answers
1k views
Uncrustify configuration for objective-c [closed]
I am looking for configurations to use with Uncrustify, for Objective-C.
Searches on google did not return nice configurations for this language.
1
vote
1answer
420 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 ...
1
vote
0answers
430 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)
...
10
votes
2answers
779 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 ...
11
votes
2answers
2k 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
...
