17 lines
309 B
VimL
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
|