(s string)
| 308 | } |
| 309 | |
| 310 | func matchShellFile(s string) (matches []compMatch, longest string) { |
| 311 | matches, longest = matchFile(s, false, shellEscape, shellUnescape) |
| 312 | return |
| 313 | } |
| 314 | |
| 315 | func matchExec(s string) (matches []compMatch, longest string) { |
| 316 | var words []string |
no test coverage detected