Io uso Uncrustify con i seguenti parametri:spazio Uncrustify dopo // nella riga di comando avvolto
sp_cmt_cpp_start = force # Add space after opening '//'
cmt_width = 78
ingresso:
bi.dwSize = sizeof (bi); //Size of the structure itself, must be initialized with sizeof(CGOSBOARDINFO)
uscita:
bi.dwSize = sizeof(bi); // Size of the structure itself, must be
//initialized with sizeof(CGOSBOARDINFO)
Ma dopo // nella seconda riga "// inizializzata" si dovrebbe assomigliare:
bi.dwSize = sizeof(bi); // Size of the structure itself, must be
// initialized with sizeof(CGOSBOARDINFO)
Qualcuno ha un'idea di come risolvere questo piccolo problema?
+1, questo è fastidioso; soluzione: licenzia tutti i programmatori che non hanno la possibilità di usare gli spazi bianchi. –
forchetta, risolvilo, quindi emetti richiesta pull: https://github.com/bengardner/uncrustify –
Risolto e archiviato. :) – Quuxplusone