From a433383074e142791f7924e4591bc91b2f70bca5 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Thu, 9 Jun 2022 17:47:01 +0200 Subject: [PATCH] go.vim: fix typo --- vim/after/ftplugin/go.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/after/ftplugin/go.vim b/vim/after/ftplugin/go.vim index b1b6f26..4354e4b 100644 --- a/vim/after/ftplugin/go.vim +++ b/vim/after/ftplugin/go.vim @@ -60,8 +60,8 @@ iabbrev errf ccif err != nil {log.Fatal(err)} iabbrev errp ccif err != nil {fmt.Println(err)} iabbrev errr ccif err != nil {return err} iabbrev defr ccdefer func() {}()ki -iabbrev fmtpf log.Printf("")hi=Eatchar('\s') -iabbrev fmtpl log.Println("")hi=Eatchar('\s') +iabbrev fmtpf fmt.Printf("")hi=Eatchar('\s') +iabbrev fmtpl fmt.Println("")hi=Eatchar('\s') iabbrev logpf log.Printf("")hi=Eatchar('\s') iabbrev logpl log.Println("")hi=Eatchar('\s') iabbrev ctxcc ctx context.Context