feat(snippets/go): switch ppd snippet from "%+v" to "%#v"

This commit is contained in:
2023-02-26 17:26:45 +00:00
parent c3ccf4f51b
commit e7e5fc87da

View File

@@ -1,4 +1,4 @@
# name: fmt.Printf("...: %+v\n", ...)
# key: ppd
# --
fmt.Printf("$1: %+v\n", ${1:})$0
fmt.Printf("$1: %#v\n", ${1:})$0