From 9d07e3b1cc3b194b40b2b7fc869b15b3e1a6c123 Mon Sep 17 00:00:00 2001 From: Rami Date: Wed, 8 May 2024 18:14:52 +0200 Subject: [PATCH] fix: Fixed multiline toml tag --- snippet/snippet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippet/snippet.go b/snippet/snippet.go index e82a0dd..e0c91b4 100644 --- a/snippet/snippet.go +++ b/snippet/snippet.go @@ -16,7 +16,7 @@ type Snippets struct { type SnippetInfo struct { Description string - Command string `toml:"multiline"` + Command string `toml:"command,multiline"` Tag []string Output string }