From a6ce992e95ab7cad0838dfc07f8d349359396d52 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Fri, 17 Jun 2022 17:08:53 +0200 Subject: [PATCH] go.vim: Add iabbrev --- vim/after/ftplugin/go.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/after/ftplugin/go.vim b/vim/after/ftplugin/go.vim index 322631f..aa90176 100644 --- a/vim/after/ftplugin/go.vim +++ b/vim/after/ftplugin/go.vim @@ -67,6 +67,7 @@ iabbrev logpl log.Println("")hi=Eatchar('\s') iabbrev ctxcc ctx context.Context iabbrev err! err != nil {}kcc=Eatchar('\s') iabbrev ior io.Reader +iabbrev iorc io.ReadCloser iabbrev iow io.Writer iabbrev gof go func() {}()kcc=Eatchar('\s') iabbrev fortc for _, tc := range testCases {t.Run(tc.name, func(t *testing.T) {})}kkcc=Eatchar('\s')