hblang.vim/ftplugin/hblang.vim
2024-09-29 23:27:26 +05:00

17 lines
309 B
VimL

setlocal commentstring=//\ %s
function Hbformat()
silent! !hbc --fmt-stdout <afile>
if v:shell_error
echom "Errors in file"
!hbc --fmt-stdout <afile>
else
silent! %!hbc --fmt-stdout <afile>
endif
endfunction
augroup hblang_group
autocmd!
autocmd BufWritePost *.hb :call Hbformat()
augroup END