後、私は、パラメータを以下でuncrustify使用:uncrustifyスペース//包まれたコマンドラインで
sp_cmt_cpp_start = force # Add space after opening '//'
cmt_width = 78
入力:
bi.dwSize = sizeof (bi); //Size of the structure itself, must be initialized with sizeof(CGOSBOARDINFO)
出力:
bi.dwSize = sizeof(bi); // Size of the structure itself, must be
//initialized with sizeof(CGOSBOARDINFO)
しかし、二行目で//の後に「//初期化」それは、のようになります。
bi.dwSize = sizeof(bi); // Size of the structure itself, must be
// initialized with sizeof(CGOSBOARDINFO)
誰がどのようにこの小さな問題を解決するにはアイデアを持っていますか?
+1、これは迷惑です。解決策:空白を使用する能力が不足しているプログラマーをすべて解雇する。 –
これをフォークして修正してからプルリクエストを発行してください:https://github.com/bengardner/uncrustify –
修正済み。 :) – Quuxplusone