From b9cbb5eee31fc2c75b203d03c402e0a363d52744 Mon Sep 17 00:00:00 2001 From: Thomas Eilmsteiner Date: Tue, 13 Dec 2016 13:52:50 +0100 Subject: [PATCH] console info snippet added a new snippet that converts to a console.info call --- snippets/snippets.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/snippets/snippets.json b/snippets/snippets.json index 1420015..f0d02f2 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -161,5 +161,10 @@ "prefix": "cwa", "body": "console.warn(${1:object});", "description": "Displays a message in the console but also displays a yellow warning icon along with the logged message" + }, + "consoleInfo": { + "prefix": "cin", + "body": "console.info(${1:object});", + "description": "Displays a message in the console but also displays a blue information icon along with the logged message" } }