🚸 alias ls for list

This commit is contained in:
2023-11-04 12:55:25 -04:00
parent 3ad1dcfa4f
commit a4cfce2117
2 changed files with 13 additions and 12 deletions

View File

@ -30,9 +30,10 @@ import (
// listCmd represents the list command
var listCmd = &cobra.Command{
Use: "list",
Short: "A brief description of your command",
Args: cobra.NoArgs,
Use: "list",
Short: "A brief description of your command",
Args: cobra.NoArgs,
Aliases: []string{"ls"},
Run: func(cmd *cobra.Command, args []string) {
projects, err := tmux.ListProjects()
if err != nil {