diff options
| -rw-r--r-- | .exrc | 10 | 
1 files changed, 6 insertions, 4 deletions
| @@ -1,13 +1,15 @@ +" We make use of this feature, so set this in the environment so that all +" Ex-calls to templ are aware of this +call setenv("TEMPL_EXPERIMENT", "rawgo") +  function s:SaveExcursion(cmd)  	let l:win = winsaveview()  	execute "%!" .. a:cmd  	call winrestview(l:win)  endfunction -autocmd BufWritePre *.go -	\ call s:SaveExcursion("gofmt -s") -autocmd BufWritePre *.templ -	\ call s:SaveExcursion("templ fmt | sed 's/{ {/{{/; s/} }/}}/'") +autocmd BufWritePre *.go    call s:SaveExcursion("gofmt -s") +autocmd BufWritePre *.templ call s:SaveExcursion("templ fmt")  nnoremap gM :make all-i18n<CR> |