From 8d049ac382753e018e37a53d350686442ff4917c Mon Sep 17 00:00:00 2001 From: Kelvin Schoofs Date: Mon, 15 Apr 2019 16:45:17 +0200 Subject: [PATCH] Improve context entries --- package.json | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1c6912d..6baebbd 100644 --- a/package.json +++ b/package.json @@ -113,27 +113,33 @@ "view/item/context": [ { "command": "sshfs.new", - "when": "view == 'sshfs-configs' && !viewItem" + "when": "view == 'sshfs-configs' && !viewItem", + "group": "SSH FS@1" }, { "command": "sshfs.connect", "when": "view == 'sshfs-configs' && viewItem == inactive", - "group": "SSH FS@1" + "group": "SSH FS@2" }, { "command": "sshfs.reconnect", "when": "view == 'sshfs-configs' && viewItem == active", - "group": "SSH FS@1" + "group": "SSH FS@3" }, { "command": "sshfs.disconnect", "when": "view == 'sshfs-configs' && viewItem == active", - "group": "SSH FS@2" + "group": "SSH FS@4" }, { "command": "sshfs.configure", "when": "view == 'sshfs-configs' && viewItem", - "group": "SSH FS@3" + "group": "SSH FS@5" + }, + { + "command": "sshfs.settings", + "when": "view == 'sshfs-configs' && !viewItem", + "group": "SSH FS@6" } ] },