Replies: 1 comment
-
|
Please delete |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to see ctags automatically prepend the data return type from the first line of a function definition, exactly as if the data return type is on the same line with the remainder of the function definition. ctags does not properly handle some data return types on a two line definition, even with command line args.
Two line definitions are common, and recommended by some.
Example:
These two definitions should be automatically handled the same by ctags, without adding additional command line arguments.
int
foo(void)
{
// ...
}
as
int foo(void)
{
// ...
}
Beta Was this translation helpful? Give feedback.
All reactions