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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
149 B
VimL
Raw Normal View History

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