()
| 191 | } |
| 192 | |
| 193 | func (lk *LogKeyboard) clearNavigationMenu() { |
| 194 | height := goterm.Height() |
| 195 | carriageReturn() |
| 196 | saveCursor() |
| 197 | |
| 198 | // clearLine() |
| 199 | for range height { |
| 200 | moveCursorDown(1) |
| 201 | clearLine() |
| 202 | } |
| 203 | restoreCursor() |
| 204 | } |
| 205 | |
| 206 | func (lk *LogKeyboard) openDockerDesktop(ctx context.Context, project *types.Project) { |
| 207 | if !lk.IsDockerDesktopActive { |
no test coverage detected