我将对我的GEdit版本进行更改。我还想将一些代码提交给实际的GEdit团队(错误修复和类似的东西)。 GEdit使用标准来格式化代码:
static void hello( GtkWidget *widget,
gpointer data )
{
g_print ("Hello World\n");
}
我忘了(不能忍受)使用。我格式化我的代码:
static void hello(GtkWidget *widget, gpointer data)
{
g_print("Hello World\n");
}
我只是想知道是否有一个程序可以运行在我的代码上,这个程序会格式化我的代码以符合GEdit的标准?