(executablePath string)
| 198 | } |
| 199 | |
| 200 | func (b *Bash) ResetCommand(executablePath string) (lines []string) { |
| 201 | lines = []string{ |
| 202 | fmt.Sprintf("__cod_clear_completions %v", quoteArg(filepath.Base(executablePath))), |
| 203 | } |
| 204 | return |
| 205 | } |
| 206 | |
| 207 | func (b *Bash) GetPreamble() (lines []string) { |
| 208 | codBinaryVar := fmt.Sprintf("__COD_BINARY=%v", quoteArg(b.codCommandPath)) |
nothing calls this directly
no test coverage detected