From 61e70a358197578bad5abfc58a6a2c86a9ecc095 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Sat, 26 Apr 2025 07:33:17 +0200 Subject: [PATCH] chore(nvim): update keymapping --- vim/after/ftplugin/go.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vim/after/ftplugin/go.vim b/vim/after/ftplugin/go.vim index b0910cb..de781c8 100644 --- a/vim/after/ftplugin/go.vim +++ b/vim/after/ftplugin/go.vim @@ -68,7 +68,8 @@ 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 gfnc go func() {}()kcc=Eatchar('\s') +iabbrev fnc func() {}kcc=Eatchar('\s') iabbrev fortc for _, tc := range testCases {t.Run(tc.name, func(t *testing.T) {})}kkcc=Eatchar('\s') iabbrev mapss map[string]string iabbrev mapsi map[string]int