From 823c720835c7511bc855fc3c14fd9e507a8d4482 Mon Sep 17 00:00:00 2001 From: phil294 Date: Sun, 30 Apr 2023 19:02:22 +0200 Subject: [PATCH] default actions change: move pull/push from global to branches, change icons for stash and stash pop --- package.json | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 025fe31..6683378 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "default": [ { "title": "", - "icon": "fold-down", + "icon": "chevron-up", "description": "Stash (include untracked)", "args": "stash -u", "options": [ @@ -105,23 +105,11 @@ }, { "title": "", - "icon": "fold-up", + "icon": "chevron-down", "description": "Stash pop", "args": "stash pop", "immediate": true }, - { - "title": "", - "icon": "repo-push", - "description": "Push", - "args": "push" - }, - { - "title": "", - "icon": "repo-pull", - "description": "Pull", - "args": "pull" - }, { "title": "", "icon": "cloud-download", @@ -512,6 +500,18 @@ } ] }, + { + "title": "Pull", + "icon": "fold-down", + "description": "Pull", + "args": "pull" + }, + { + "title": "Push", + "icon": "fold-up", + "description": "Push", + "args": "push" + }, { "title": "Rename", "icon": "edit", @@ -544,6 +544,11 @@ ] } ] + }, + "git-log--graph.branch-width": { + "description": "The width of the individual branch lines, including both line and right spacing. The default 'auto' chooses between 10 and 2 depending on the size of the repository.", + "type": ["integer", "string"], + "default": "auto" } } }