implementing dependency management in tui

This commit is contained in:
viljarb
2026-03-24 19:57:45 +01:00
parent 47f1cf8d09
commit 802d379de8
12 changed files with 701 additions and 15 deletions

View File

@@ -180,7 +180,7 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
{Key: "/", Desc: "search"},
{Key: "a", Desc: "add"},
{Key: "c", Desc: "comment"},
{Key: "e/d/s/p/t/A", Desc: "edit"},
{Key: "e/d/s/p/t/A/D", Desc: "edit"},
{Key: "x", Desc: "delete"},
{Key: "q", Desc: "quit"},
{Key: "?", Desc: "help"},
@@ -199,6 +199,7 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
{Key: "p", Desc: "change priority"},
{Key: "t", Desc: "change type"},
{Key: "A", Desc: "change assignee"},
{Key: "D", Desc: "edit dependencies"},
{Key: "q", Desc: "quit"},
{Key: "?", Desc: "help"},
},
@@ -217,7 +218,7 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
{Key: "h/l", Desc: "column"},
{Key: "←/→", Desc: "move"},
{Key: "a", Desc: "add"},
{Key: "e/d/s/p/t/A/", Desc: "edit"},
{Key: "e/d/s/p/t/A/D", Desc: "edit"},
{Key: "x", Desc: "delete"},
{Key: "q", Desc: "quit"},
{Key: "?", Desc: "help"},
@@ -239,6 +240,7 @@ func helpBarConfig(view ViewKind) HelpBarConfig {
{Key: "p", Desc: "change priority"},
{Key: "t", Desc: "change type"},
{Key: "A", Desc: "change assignee"},
{Key: "D", Desc: "manage dependencies"},
{Key: "S", Desc: "select sprint"},
{Key: "n", Desc: "new sprint"},
{Key: "q", Desc: "quit"},