HotKeysStop stops the ongoing hotkeys collection session. This command is only available on standalone clients.
(ctx context.Context)
| 99 | // HotKeysStop stops the ongoing hotkeys collection session. |
| 100 | // This command is only available on standalone clients. |
| 101 | func (c *Client) HotKeysStop(ctx context.Context) *StatusCmd { |
| 102 | cmd := NewStatusCmd(ctx, "hotkeys", "stop") |
| 103 | _ = c.Process(ctx, cmd) |
| 104 | return cmd |
| 105 | } |
| 106 | |
| 107 | // HotKeysReset discards the last hotkeys collection session results. |
| 108 | // Returns an error if tracking is currently active. |
no test coverage detected