From 94fc69987d1215c9671e68822486538994d79274 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Sun, 9 Jan 2022 16:06:19 +0100 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 8d1efe7..3165d83 100644 --- a/vim/after/ftplugin/go.vim +++ b/vim/after/ftplugin/go.vim @@ -71,3 +71,4 @@ iabbrev err! err != nil {}kcc=Eatchar('\s') iabbrev ior io.Reader 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')