(executablePath string)
| 141 | } |
| 142 | |
| 143 | func (f *Fish) ResetCommand(executablePath string) (shellScript []string) { |
| 144 | return []string{ |
| 145 | fmt.Sprintf("complete --command %s --erase", |
| 146 | quoteArg(filepath.Base(executablePath))), |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | func (f *Fish) GetPreamble() (lines []string) { |
| 151 | lines = []string{ |
nothing calls this directly
no test coverage detected