Skip to content

Commit

Permalink
Add further aliases for install and remove (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefferson-Faseler authored Nov 23, 2021
1 parent d5c8c1f commit 8389dd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/pkgs.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var (
// installPkgCmd represents the command for installing vim packages
var installPkgCmd = &cobra.Command{
Use: "install [pkg url]",
Aliases: []string{"add", "i"},
Short: "easily install a vim package",
SilenceUsage: true,
SilenceErrors: true,
Expand Down Expand Up @@ -64,7 +65,7 @@ var reinstallPkgCmd = &cobra.Command{
// removePkgCmd represents the command for removing vim packages
var removePkgCmd = &cobra.Command{
Use: "rm [pkg name]",
Aliases: []string{"remove"},
Aliases: []string{"remove", "delete"},
Short: "easily remove a vim package",
SilenceUsage: true,
SilenceErrors: true,
Expand Down

0 comments on commit 8389dd8

Please sign in to comment.