diff --git a/pkg/actions/ps/ps.go b/pkg/actions/ps/ps.go index a56cb281a7..1d19d4534a 100644 --- a/pkg/actions/ps/ps.go +++ b/pkg/actions/ps/ps.go @@ -48,7 +48,7 @@ func ActionKillSignals() carapace.Action { "XCPU", "CPU time limit exceeded", styles.CarapaceBin.KillSignalCore, "XFSZ", "File size limit exceeded", styles.CarapaceBin.KillSignalCore, ) - }).Tag("kill signals") + }).Tag("kill signals").Uid("ps", "signal") } // ActionProcessExecutables completes executable names of current processes @@ -66,7 +66,7 @@ func ActionProcessExecutables() carapace.Action { } return carapace.ActionValuesDescribed(executables...) } - }).Tag("process executables") + }).Tag("process executables").Uid("ps", "executable") } // ActionProcessIds completes proces IDs @@ -84,7 +84,7 @@ func ActionProcessIds() carapace.Action { } return carapace.ActionValuesDescribed(ids...) } - }).Tag("process ids") + }).Tag("process ids").Uid("ps", "id") } // ActionProcessStates completes linux process states @@ -102,5 +102,5 @@ func ActionProcessStates() carapace.Action { "X", "dead (should never be seen)", "Z", "defunct (zombie) process, terminated but not reaped by its parent", "t", "stopped by debugger during the tracing", - ).Tag("process states") + ).Tag("process states").Uid("ps", "state") }