You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
283 B
VimL
18 lines
283 B
VimL
4 years ago
|
if exists("g:zig_loaded")
|
||
|
finish
|
||
|
endif
|
||
|
let g:zig_loaded = 1
|
||
|
|
||
|
function! s:fmt_autosave()
|
||
|
if get(g:, "zig_fmt_autosave", 1)
|
||
|
call zig#fmt#Format()
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
augroup vim-zig
|
||
|
autocmd!
|
||
|
autocmd BufWritePre *.zig call s:fmt_autosave()
|
||
|
augroup end
|
||
|
|
||
|
" vim: sw=2 ts=2 et
|