(s string, dirOnly bool)
| 303 | } |
| 304 | |
| 305 | func matchCmdFile(s string, dirOnly bool) (matches []compMatch, longest string) { |
| 306 | matches, longest = matchFile(s, dirOnly, cmdEscape, cmdUnescape) |
| 307 | return |
| 308 | } |
| 309 | |
| 310 | func matchShellFile(s string) (matches []compMatch, longest string) { |
| 311 | matches, longest = matchFile(s, false, shellEscape, shellUnescape) |
no test coverage detected