(executablePath string)
| 118 | } |
| 119 | |
| 120 | func (z *Zsh) ResetCommand(executablePath string) (script []string) { |
| 121 | script = []string{ |
| 122 | fmt.Sprintf("__cod_clear_completions %v", quoteArg(filepath.Base(executablePath))), |
| 123 | } |
| 124 | return |
| 125 | } |
| 126 | |
| 127 | // |
| 128 | // Fish |
nothing calls this directly
no test coverage detected