summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.exrc10
1 files changed, 6 insertions, 4 deletions
diff --git a/.exrc b/.exrc
index ddace89..92e2d06 100644
--- a/.exrc
+++ b/.exrc
@@ -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>