From d4129a1f244679db493df9123c5216339ddc2443 Mon Sep 17 00:00:00 2001
From: Przemyslaw Adamczewski
Date: Mon, 3 Apr 2017 22:30:08 +0100
Subject: [PATCH] Added keybindings for Windows and Linux
---
package.json | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package.json b/package.json
index 49753e2..05d55cd 100644
--- a/package.json
+++ b/package.json
@@ -31,12 +31,16 @@
{
"command": "extension.insertLogStatement",
"key": "shift+ctrl+l",
+ "linux": "shift+meta+l",
+ "win": "shift+win+l",
"mac": "shift+cmd+l",
"when": "editorTextFocus"
},
{
"command": "extension.deleteAllLogStatements",
"key": "shift+ctrl+d",
+ "linux": "shift+meta+d",
+ "win": "shift+win+d",
"mac": "shift+cmd+d"
}
]