summaryrefslogtreecommitdiff
path: root/after/ftplugin/go.lua
blob: e17dfeab90fe5c640c8f642b250cf366e6333233 (plain)
1
2
3
4
5
6
7
8
local map = vim.keymap.set
map("n", ",p", [[<cmd>s/\(\s*\)\(.\+\)/\1fmt.Printf("\2: %#v\\n", \2)<cr>]], { desc = "Surround var with fmt.Println" })
map(
	"n",
	",e",
	[[Iif err := <esc>A; err != nil {
}<esc>Opanic(err)<esc>]]
)