From 98f8f1d78b04d78ed59291841ffaddb9bce3185c Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani <3fb650a9-b47e-4604-a282-1dd91953b2ee@anonaddy.me> Date: Wed, 25 Nov 2020 22:10:34 -0500 Subject: [PATCH] add `zpe` command intergrate the alias which inspired this plugin into the script itself --- COPYING => LICENSE | 0 README.md | 6 +++--- zpe.zsh | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) rename COPYING => LICENSE (100%) diff --git a/COPYING b/LICENSE similarity index 100% rename from COPYING rename to LICENSE diff --git a/README.md b/README.md index 78f9fe2..84a30fb 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ A utility to ease the management of Zsh plugins. This is NOT a complete Zsh plug ### Extra commands * `zpe-pull` updates the repositories - * `zpe-clean` removes any cloned repositories that are no longer in `repositories` file + * `zpe-clean` removes any cloned repositories that are no longer in the `repositories` file + * `zpe` opens the `repositories` file in $EDITOR ## Motivation All of the other available plugin managers try to get way too fancy. I just need something to automatically clone git repositories, and make my config nice and portable. The script is intentionally highly extensible and feature-minimal. ## License -Copyright Armaan Bhojwani 2020 -MIT License, see COPYING for more information +Copyright Armaan Bhojwani 2020, MIT License, see the LICENSE file for more information diff --git a/zpe.zsh b/zpe.zsh index 1061ce9..a3a25a3 100755 --- a/zpe.zsh +++ b/zpe.zsh @@ -68,3 +68,7 @@ zpe-clean() { zpe-source() { source "${zpe_plugin_dir}"/$1 } + +zpe() { + ${EDITOR} ${zpe_config_dir}repositories +} -- 2.39.2