feat: rename create and delete commands to add and del

This commit is contained in:
2026-03-29 19:46:43 +02:00
parent 68f4b67283
commit 535626d198
5 changed files with 23 additions and 23 deletions

View File

@@ -20,7 +20,7 @@ type fileConfig struct {
var defaultAliases = []*Alias{
{Name: "mine", Command: "list --assignee $me --tag _status::open", Description: "Show open tasks assigned to you"},
{Name: "due", Command: "list --tag _status::open --tag _due", Description: "Show open tasks with due dates"},
{Name: "new", Command: "create $@", Description: "Create a new task"},
{Name: "new", Command: "add $@", Description: "Create a new task"},
}
func LoadConfig() (Config, error) {