5 lines
149 B
VimL
5 lines
149 B
VimL
function! c#format_with_gst_indent() abort
|
|
let file = expand('%:p')
|
|
silent execute "!gst-indent " . file
|
|
silent execute "e" . file
|
|
endfunction
|