refactor: convert inbox command to default alias

This commit is contained in:
2026-03-29 19:56:15 +02:00
parent 535626d198
commit 6ff013dd2a
4 changed files with 18 additions and 37 deletions

View File

@@ -21,6 +21,7 @@ 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: "add $@", Description: "Create a new task"},
{Name: "inbox", Command: "list --mention $me", Description: "Show your inbox"},
}
func LoadConfig() (Config, error) {