From 41a5b1d3b59399d7b7a1dc439fde939630637c2c Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Sat, 7 Jun 2025 08:46:40 +0200 Subject: [PATCH] [Snippets] Remove tab chars --- nvim/snippets/snippets/docSetup.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/nvim/snippets/snippets/docSetup.json b/nvim/snippets/snippets/docSetup.json index d79bcaa..3462406 100755 --- a/nvim/snippets/snippets/docSetup.json +++ b/nvim/snippets/snippets/docSetup.json @@ -1,6 +1,14 @@ { "docTitle": { "prefix": "prepareDoc", - "body": "$BLOCK_COMMENT_START\n*\t\t\t\t$WORKSPACE_NAME - $TM_FILENAME\n*\n*\tCreated by Janis Hutz $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR, Licensed under ${1|the GPL V3,the MIT,a proprietary,the BSD,the LGPL V3,the Apache|} License\n*\t\t\thttps://janishutz.com, development@janishutz.com\n*\n*\n$BLOCK_COMMENT_END" + "body": [ + "$BLOCK_COMMENT_START", + " * $WORKSPACE_NAME - $TM_FILENAME", + " *", + " * Created by Janis Hutz $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR, Licensed under ${1|the GPL V3,the MIT,a proprietary,the BSD,the LGPL V3,the Apache|} License", + " * https://janishutz.com, development@janishutz.com", + " *\n *", + "$BLOCK_COMMENT_END" + ] } -} \ No newline at end of file +}