1

例、次のような私のCソースコード:

static float             getYuvMemoryRatio( int  format       )  {  
}

以下のようにコードをフォーマットするコマンドはありますか:

static float getYuvMemoryRatio( int format ){
}
4

1 に答える 1

0

以下は私の設定で、Cソースコードで自分で検証しました 1.Autoformatとastyleをインストールします 2.vimrcに次のスニップを追加します:</p>

 398     " autoformat{
 399     noremap <F2> :Autoformat<CR><CR>
 400     "autocmd FileType * let "g:formatprg_".&filetype = "astyle"
 401     "autocmd FileType * let "g:formatprg_args_".&filetype = "--mode=cs --style=ansi -pcUHs4"
 402     "echo &filetype tell you the suffix of formatprg_
 403     let g:formatprg_c = "astyle"
 404     let g:formatprg_args_c = "--mode=cs --style=ansi -fDpcUs4"
 405     "let g:formatprg_args_cs = "--mode=cs --style=ansi -TU4pb"                                                                                                      
 406     " }

現在、すべてが私のコードに最適です。「man astyle」と入力すると、さまざまなオプションの意味を知ることができます

于 2013-07-19T11:14:26.870 に答える