dotfiles/nvim/.config/nvim/autoload/c.vim

6 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