need this for issue id completion

This commit is contained in:
Robin Olsen
2026-03-03 10:50:15 +01:00
parent c36599c96a
commit e8d9f9d1b6

View File

@@ -6,8 +6,8 @@ import (
"github.com/LazyBachelor/LazyPM/cmd/pm/tasks"
"github.com/LazyBachelor/LazyPM/internal/app"
issues "github.com/LazyBachelor/LazyPM/internal/commands/issues"
survey "github.com/LazyBachelor/LazyPM/internal/commands/survey"
"github.com/LazyBachelor/LazyPM/internal/commands/issues"
"github.com/LazyBachelor/LazyPM/internal/commands/survey"
"github.com/LazyBachelor/LazyPM/pkg/repl"
"github.com/LazyBachelor/LazyPM/pkg/task"
"github.com/LazyBachelor/LazyPM/pkg/tui"
@@ -149,7 +149,7 @@ func setupLazyInitialization() {
func commandNeedsApp(cmd *cobra.Command) bool {
name := cmd.Name()
switch name {
case "help", "completion", "__complete", "__completeNoDesc":
case "help", "completion":
return false
}