From 918abf5b883391145ca1d54c2b4b0749ed7792c6 Mon Sep 17 00:00:00 2001 From: x1unix Date: Sat, 12 Mar 2022 02:00:10 +0100 Subject: [PATCH] web: fix "fmtprintf" snippet --- web/src/components/editor/snippets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/editor/snippets.ts b/web/src/components/editor/snippets.ts index fbaf50d2..f08044b7 100644 --- a/web/src/components/editor/snippets.ts +++ b/web/src/components/editor/snippets.ts @@ -62,7 +62,7 @@ const snippets = [ }, { label: 'fmtprintf', - insertText: 'fmt.Printf("${1:format}\n", $0)', + insertText: 'fmt.Printf("${1:format}", $0)', documentation: 'fmt.Printf() shorthand' }, {