go.vim: fix typo

This commit is contained in:
Rob Watson 2022-06-09 17:47:01 +02:00
parent 3f49b0af6e
commit a433383074
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ iabbrev errf <esc>ccif err != nil {<cr>log.Fatal(err)<cr>}
iabbrev errp <esc>ccif err != nil {<cr>fmt.Println(err)<cr>}
iabbrev errr <esc>ccif err != nil {<cr>return err<cr>}
iabbrev defr <esc>ccdefer func() {<cr><cr>}()<esc>ki
iabbrev fmtpf log.Printf("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev fmtpl log.Println("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev fmtpf fmt.Printf("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev fmtpl fmt.Println("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev logpf log.Printf("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev logpl log.Println("")<esc>hi<c-r>=Eatchar('\s')<cr>
iabbrev ctxcc ctx context.Context